@@ -209,6 +209,7 @@ export type Models = {
209
209
[ ModelProviderName . HYPERBOLIC ] : Model ;
210
210
[ ModelProviderName . VENICE ] : Model ;
211
211
[ ModelProviderName . AKASH_CHAT_API ] : Model ;
212
+ [ ModelProviderName . LIVEPEER ] : Model ;
212
213
} ;
213
214
214
215
/**
@@ -238,6 +239,7 @@ export enum ModelProviderName {
238
239
HYPERBOLIC = "hyperbolic" ,
239
240
VENICE = "venice" ,
240
241
AKASH_CHAT_API = "akash_chat_api" ,
242
+ LIVEPEER = "livepeer" ,
241
243
}
242
244
243
245
/**
@@ -417,6 +419,9 @@ export interface Action {
417
419
418
420
/** Validation function */
419
421
validate : Validator ;
422
+
423
+ /** Whether to suppress the initial message when this action is used */
424
+ suppressInitialMessage ?: boolean ;
420
425
}
421
426
422
427
/**
@@ -617,13 +622,20 @@ export enum Clients {
617
622
LENS = "lens" ,
618
623
AUTO = "auto" ,
619
624
SLACK = "slack" ,
620
- XMTP = "xmtp" ,
621
625
}
622
626
623
627
export interface IAgentConfig {
624
628
[ key : string ] : string ;
625
629
}
626
630
631
+ export interface ModelConfiguration {
632
+ temperature ?: number ;
633
+ max_response_length ?: number ;
634
+ frequency_penalty ?: number ;
635
+ presence_penalty ?: number ;
636
+ maxInputTokens ?: number ;
637
+ }
638
+
627
639
/**
628
640
* Configuration for an agent character
629
641
*/
@@ -708,6 +720,20 @@ export type Character = {
708
720
settings ?: {
709
721
secrets ?: { [ key : string ] : string } ;
710
722
intiface ?: boolean ;
723
+ imageSettings ?: {
724
+ steps ?: number ;
725
+ width ?: number ;
726
+ height ?: number ;
727
+ negativePrompt ?: string ;
728
+ numIterations ?: number ;
729
+ guidanceScale ?: number ;
730
+ seed ?: number ;
731
+ modelId ?: string ;
732
+ jobId ?: string ;
733
+ count ?: number ;
734
+ stylePreset ?: string ;
735
+ hideWatermark ?: boolean ;
736
+ } ;
711
737
voice ?: {
712
738
model ?: string ; // For VITS
713
739
url ?: string ; // Legacy VITS support
@@ -722,6 +748,7 @@ export type Character = {
722
748
} ;
723
749
} ;
724
750
model ?: string ;
751
+ modelConfig ?: ModelConfiguration ;
725
752
embeddingModel ?: string ;
726
753
chains ?: {
727
754
evm ?: any [ ] ;
@@ -757,16 +784,13 @@ export type Character = {
757
784
slack ?: {
758
785
shouldIgnoreBotMessages ?: boolean ;
759
786
shouldIgnoreDirectMessages ?: boolean ;
760
- < < << << < HEAD
761
- = === ===
762
787
} ;
763
788
gitbook ?: {
764
789
keywords ?: {
765
790
projectTerms ?: string [ ] ;
766
791
generalQueries ?: string [ ] ;
767
792
} ;
768
793
documentTriggers ?: string [ ] ;
769
- > >>> >>> b04fe69e ( gitbook data fetch . )
770
794
} ;
771
795
} ;
772
796
0 commit comments