Skip to content

Commit 77082ef

Browse files
committed
Revert changes to packages/client-discord/src/messages.ts
1 parent 34e9cd7 commit 77082ef

File tree

1 file changed

+28
-4
lines changed

1 file changed

+28
-4
lines changed

packages/core/src/types.ts

+28-4
Original file line numberDiff line numberDiff line change
@@ -209,6 +209,7 @@ export type Models = {
209209
[ModelProviderName.HYPERBOLIC]: Model;
210210
[ModelProviderName.VENICE]: Model;
211211
[ModelProviderName.AKASH_CHAT_API]: Model;
212+
[ModelProviderName.LIVEPEER]: Model;
212213
};
213214

214215
/**
@@ -238,6 +239,7 @@ export enum ModelProviderName {
238239
HYPERBOLIC = "hyperbolic",
239240
VENICE = "venice",
240241
AKASH_CHAT_API = "akash_chat_api",
242+
LIVEPEER = "livepeer",
241243
}
242244

243245
/**
@@ -417,6 +419,9 @@ export interface Action {
417419

418420
/** Validation function */
419421
validate: Validator;
422+
423+
/** Whether to suppress the initial message when this action is used */
424+
suppressInitialMessage?: boolean;
420425
}
421426

422427
/**
@@ -617,13 +622,20 @@ export enum Clients {
617622
LENS = "lens",
618623
AUTO = "auto",
619624
SLACK = "slack",
620-
XMTP = "xmtp",
621625
}
622626

623627
export interface IAgentConfig {
624628
[key: string]: string;
625629
}
626630

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+
627639
/**
628640
* Configuration for an agent character
629641
*/
@@ -708,6 +720,20 @@ export type Character = {
708720
settings?: {
709721
secrets?: { [key: string]: string };
710722
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+
};
711737
voice?: {
712738
model?: string; // For VITS
713739
url?: string; // Legacy VITS support
@@ -722,6 +748,7 @@ export type Character = {
722748
};
723749
};
724750
model?: string;
751+
modelConfig?: ModelConfiguration;
725752
embeddingModel?: string;
726753
chains?: {
727754
evm?: any[];
@@ -757,16 +784,13 @@ export type Character = {
757784
slack?: {
758785
shouldIgnoreBotMessages?: boolean;
759786
shouldIgnoreDirectMessages?: boolean;
760-
<<<<<<< HEAD
761-
=======
762787
};
763788
gitbook?: {
764789
keywords?: {
765790
projectTerms?: string[];
766791
generalQueries?: string[];
767792
};
768793
documentTriggers?: string[];
769-
>>>>>>> b04fe69e (gitbook data fetch.)
770794
};
771795
};
772796

0 commit comments

Comments
 (0)