feat: rebrand from Dyad to MoreMinimore
- Update package.json description to reflect new branding - Add fix_chat_input function to update Pro URL references - Rename all Dyad-related functions and tags to MoreMinimore - Update test files to use new function names - Remove Pro restrictions from Annotator component - Update branding text throughout the application
This commit is contained in:
@@ -46,7 +46,7 @@ or to provide a custom fetch implementation for e.g. testing.
|
||||
settings: UserSettings;
|
||||
}
|
||||
|
||||
export interface DyadEngineProvider {
|
||||
export interface MoreMinimoreEngineProvider {
|
||||
/**
|
||||
Creates a model for text generation.
|
||||
*/
|
||||
@@ -64,9 +64,9 @@ Creates a chat model for text generation.
|
||||
): LanguageModelV2;
|
||||
}
|
||||
|
||||
export function createDyadEngine(
|
||||
export function createMoreMinimoreEngine(
|
||||
options: ExampleProviderSettings,
|
||||
): DyadEngineProvider {
|
||||
): MoreMinimoreEngineProvider {
|
||||
const baseURL = withoutTrailingSlash(options.baseURL);
|
||||
logger.info("creating dyad engine with baseURL", baseURL);
|
||||
|
||||
@@ -184,7 +184,7 @@ export function createDyadEngine(
|
||||
headers: {
|
||||
...init.headers,
|
||||
...(modifiedRequestId && {
|
||||
"X-Dyad-Request-Id": modifiedRequestId,
|
||||
"X-MoreMinimore-Request-Id": modifiedRequestId,
|
||||
}),
|
||||
},
|
||||
body: JSON.stringify(parsedBody),
|
||||
|
||||
Reference in New Issue
Block a user