Skip to content

Commit 1d32839

Browse files
committed
lint updates
1 parent e90798f commit 1d32839

23 files changed

+194
-956
lines changed

CHANGELOG.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -218,7 +218,7 @@
218218
- fix: improve Twitter client dry run mode and configuration logging [\#1498](https://github.com/elizaOS/eliza/pull/1498) ([e-fu](https://github.com/e-fu))
219219
- feat: add readme for ton plugin [\#1496](https://github.com/elizaOS/eliza/pull/1496) ([chandiniv1](https://github.com/chandiniv1))
220220
- feat: add readme for websearch plugin [\#1494](https://github.com/elizaOS/eliza/pull/1494) ([chandiniv1](https://github.com/chandiniv1))
221-
- docs: Fixed a small syntax issue in the ModelClass Update fine-tuning.md [\#1493](https://github.com/elizaOS/eliza/pull/1493) ([mdqst](https://github.com/mdqst))
221+
- docs: Fixed a small syntax issue in the ModelType Update fine-tuning.md [\#1493](https://github.com/elizaOS/eliza/pull/1493) ([mdqst](https://github.com/mdqst))
222222
- fix: remove `type` when import from `elizaos` [\#1492](https://github.com/elizaOS/eliza/pull/1492) ([tomguluson92](https://github.com/tomguluson92))
223223
- fix: improve client type identification with test coverage [\#1490](https://github.com/elizaOS/eliza/pull/1490) ([ShaneOxM](https://github.com/ShaneOxM))
224224
- chore: fix typos [\#1489](https://github.com/elizaOS/eliza/pull/1489) ([qwdsds](https://github.com/qwdsds))
@@ -1155,7 +1155,7 @@
11551155
- New Plugin Idea: log discord and summarize channels [\#318](https://github.com/elizaOS/eliza/issues/318)
11561156
- Add GROK Model Provider Key Support in `getTokenForProvider` Function [\#295](https://github.com/elizaOS/eliza/issues/295)
11571157
- Feature Request: Automated Bot Registry and Private Communication Protocol [\#291](https://github.com/elizaOS/eliza/issues/291)
1158-
- Unify ImageGen into ModelClass.IMAGE [\#223](https://github.com/elizaOS/eliza/issues/223)
1158+
- Unify ImageGen into ModelType.IMAGE [\#223](https://github.com/elizaOS/eliza/issues/223)
11591159
- Move services to plugins [\#222](https://github.com/elizaOS/eliza/issues/222)
11601160
- Make sure system directive passed to vercel sdk [\#217](https://github.com/elizaOS/eliza/issues/217)
11611161
- .env not loading? [\#213](https://github.com/elizaOS/eliza/issues/213)

bun.lock

+83-856
Large diffs are not rendered by default.

packages/docs/community/Analysis/20241223_20241229.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -190,7 +190,7 @@ Wednesday, Christmas Day, showed continued development activity despite the holi
190190
**Documentation Updates:**
191191

192192
- TON and WebSearch plugins received README files [2024-12-25.md]
193-
- ModelClass syntax correction in documentation [2024-12-25.md]
193+
- ModelType syntax correction in documentation [2024-12-25.md]
194194
- Typo fixes in eliza-in-tee.md [2024-12-25.md]
195195

196196
**Bug Fixes:**
@@ -280,7 +280,7 @@ Thursday's activities centered on plugin documentation, codebase refinements, an
280280

281281
- Code of Conduct added for open-source contributors [2024-12-26.md]
282282
- Linting proposal submitted for updated setup using Husky [2024-12-26.md]
283-
- ModelClass enum syntax correction to prevent errors [2024-12-26.md]
283+
- ModelType enum syntax correction to prevent errors [2024-12-26.md]
284284
- Import consistency standardized by removing 'type' keyword [2024-12-26.md]
285285

286286
**Community Discussions:**
@@ -363,7 +363,7 @@ Friday's activities focused on plugin enhancements, codebase cleanup, and enviro
363363
- Link redirection fixes [2024-12-27.md]
364364
- Code duplication removal in getGoals function [2024-12-27.md]
365365
- TypeScript client enhancements with determineClientType function [2024-12-27.md]
366-
- Documentation syntax fixes in ModelClass enum [2024-12-27.md]
366+
- Documentation syntax fixes in ModelType enum [2024-12-27.md]
367367

368368
**Community Discussions:**
369369

packages/docs/community/Streams/11-2024/2024-11-06.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -177,7 +177,7 @@ A:
177177

178178
00:04:32 - Model provider and class configuration
179179

180-
- `ModelProvider` class with `ModelClass` (small, medium, large, embedding)
180+
- `ModelProvider` class with `ModelType` (small, medium, large, embedding)
181181
- Configured in `models.ts`
182182
- Example: OpenAI small = GPT-4-mini, medium = GPT-4
183183
- Approach: Check if model class can handle everything in less than 8k context

packages/docs/docs/changelog.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1462,7 +1462,7 @@ Complete changelog:
14621462
* feat: add readme for ton plugin by @chandiniv1 in https://github.com/elizaOS/eliza/pull/1496
14631463
* feat: add readme for websearch plugin by @chandiniv1 in https://github.com/elizaOS/eliza/pull/1494
14641464
* chore: fix typos by @qwdsds in https://github.com/elizaOS/eliza/pull/1489
1465-
* docs: Fixed a small syntax issue in the ModelClass Update fine-tuning.md by @mdqst in https://github.com/elizaOS/eliza/pull/1493
1465+
* docs: Fixed a small syntax issue in the ModelType Update fine-tuning.md by @mdqst in https://github.com/elizaOS/eliza/pull/1493
14661466
* add CODE_OF_CONDUCT.md by @nulLeeKH in https://github.com/elizaOS/eliza/pull/1487
14671467
* fix: remove `type` when import from `elizaos` by @tomguluson92 in https://github.com/elizaOS/eliza/pull/1492
14681468
* fix: improve Twitter client dry run mode and configuration logging by @e-fu in https://github.com/elizaOS/eliza/pull/1498

packages/docs/docs/core/evaluators.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -189,7 +189,7 @@ import {
189189
type ActionExample,
190190
type IAgentRuntime,
191191
type Memory,
192-
ModelClass,
192+
ModelType,
193193
type Evaluator,
194194
} from '@elizaos/core';
195195

@@ -246,7 +246,7 @@ async function handler(runtime: IAgentRuntime, message: Memory) {
246246
const facts = await generateObjectArray({
247247
runtime,
248248
context,
249-
modelClass: ModelClass.LARGE,
249+
modelClass: ModelType.LARGE,
250250
});
251251

252252
const factsManager = new MemoryManager({
@@ -491,7 +491,7 @@ import { parseJsonArrayFromText } from "@elizaos/core";
491491
import {
492492
type IAgentRuntime,
493493
type Memory,
494-
ModelClass,
494+
ModelType,
495495
type Objective,
496496
type Goal,
497497
type State,
@@ -552,7 +552,7 @@ template: runtime.character.templates?.goalsTemplate || goalsTemplate,
552552
const response = await generateText({
553553
runtime,
554554
context,
555-
modelClass: ModelClass.LARGE,
555+
modelClass: ModelType.LARGE,
556556
});
557557

558558
// Parse the JSON response to extract goal updates

packages/docs/news/2024-11-01.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -28,9 +28,9 @@
2828

2929
- Disabled due to code error; needs reactivation and testing. [Issue Details](https://github.com/elizaOS/eliza/issues/164)
3030

31-
- **ModelClass Fix:**
31+
- **ModelType Fix:**
3232

33-
- Correct ModelClass passed for Discord bot functionality. [Pull Request #169](https://github.com/elizaOS/eliza/pull/169)
33+
- Correct ModelType passed for Discord bot functionality. [Pull Request #169](https://github.com/elizaOS/eliza/pull/169)
3434

3535
- **Twitter Testing:**
3636
- Developing non-live test methods (mocking API, etc.). [Issue Details](https://github.com/elizaOS/eliza/issues/171)

packages/docs/news/2024-11-02.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535

3636
- [Source and Image](https://github.com/elizaOS/eliza/issues/164)
3737

38-
- **ModelClass Update**: Resolved issue affecting Discord usage.
38+
- **ModelType Update**: Resolved issue affecting Discord usage.
3939

4040
- [Source and Image](https://github.com/elizaOS/eliza/pull/169)
4141

packages/docs/news/2024-12-26.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
- **Link Redirection Fix**: Ensures proper URL direction. [Source](https://github.com/elizaOS/eliza/pull/1443)
2323
- **Code Duplication Removal**: Enhanced performance via `getGoals` function improvement. [Source](https://github.com/elizaOS/eliza/pull/1450)
2424
- **TypeScript Client Enhancement**: A `determineClientType` function improves type safety. [Source](https://github.com/elizaOS/eliza/pull/1490)
25-
- **Documentation Syntax Fix**: Corrected syntax in `ModelClass` enum. [Source](https://github.com/elizaOS/eliza/pull/1493)
25+
- **Documentation Syntax Fix**: Corrected syntax in `ModelType` enum. [Source](https://github.com/elizaOS/eliza/pull/1493)
2626
- **Broken Links in Documentation**: Fixed links in `eliza-in-tee.md`. [Source](https://github.com/elizaOS/eliza/pull/1500)
2727

2828
## Recent Development Updates
@@ -59,4 +59,4 @@
5959

6060
## Documentation Update
6161

62-
- **Syntax Fix**: Corrected an issue in the 'ModelClass Update fine-tuning.md'. [Source](https://github.com/elizaOS/eliza/commit/ed1e9f3d0f20020509e231bed81bda7f229a0b98)
62+
- **Syntax Fix**: Corrected an issue in the 'ModelType Update fine-tuning.md'. [Source](https://github.com/elizaOS/eliza/commit/ed1e9f3d0f20020509e231bed81bda7f229a0b98)

packages/docs/news/2024-12-27.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ This summary provides insights into the latest updates across various categories
2222

2323
1. **Code of Conduct**: Guidelines for open-source contributors [Source](https://github.com/elizaOS/eliza/pull/1487)
2424
2. **Linting Proposal**: Suggestions for updated linting setup using Husky [Source](https://github.com/elizaOS/eliza/issues/1486)
25-
3. **ModelClass Fix**: Syntax correction in enum to prevent errors [Source](https://github.com/elizaOS/eliza/pull/1493)
25+
3. **ModelType Fix**: Syntax correction in enum to prevent errors [Source](https://github.com/elizaOS/eliza/pull/1493)
2626
4. **Import Consistency**: Standardized imports by removing 'type' keyword [Source](https://github.com/elizaOS/eliza/pull/1492)
2727

2828
## Chat Transcript Analysis and Chat Formatting Improvement
@@ -35,7 +35,7 @@ This summary provides insights into the latest updates across various categories
3535
1. **Client Type Identification**: Introduced `determineClientType` for error resolution [Source](https://github.com/elizaOS/eliza/pull/1490)
3636
2. **Build Configuration Fix**: Added `incremental` option, removed invalid settings [Source](https://github.com/elizaOS/eliza/pull/1485)
3737

38-
## Documentation Update: ModelClass Fine-Tuning
38+
## Documentation Update: ModelType Fine-Tuning
3939

4040
- **Syntax Fix**: Improved readability and accuracy in documentation [Source](https://github.com/elizaOS/eliza/commit/ed1e9f3d0f20020509e231bed81bda7f229a0b98)
4141

packages/docs/notes/advanced.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -261,7 +261,7 @@ const customRuntime = new AgentRuntime({
261261

262262
```typescript
263263
const modelConfig = {
264-
modelClass: ModelClass.LARGE,
264+
modelClass: ModelType.LARGE,
265265
temperature: 0.7,
266266
maxTokens: 2000,
267267
topP: 0.9,

packages/docs/notes/changelog.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -1580,7 +1580,7 @@ Complete changelog:
15801580
* feat: add readme for ton plugin by @chandiniv1 in https://github.com/elizaOS/eliza/pull/1496
15811581
* feat: add readme for websearch plugin by @chandiniv1 in https://github.com/elizaOS/eliza/pull/1494
15821582
* chore: fix typos by @qwdsds in https://github.com/elizaOS/eliza/pull/1489
1583-
* docs: Fixed a small syntax issue in the ModelClass Update fine-tuning.md by @mdqst in https://github.com/elizaOS/eliza/pull/1493
1583+
* docs: Fixed a small syntax issue in the ModelType Update fine-tuning.md by @mdqst in https://github.com/elizaOS/eliza/pull/1493
15841584
* add CODE_OF_CONDUCT.md by @nulLeeKH in https://github.com/elizaOS/eliza/pull/1487
15851585
* fix: remove `type` when import from `elizaos` by @tomguluson92 in https://github.com/elizaOS/eliza/pull/1492
15861586
* fix: improve Twitter client dry run mode and configuration logging by @e-fu in https://github.com/elizaOS/eliza/pull/1498
@@ -1901,7 +1901,7 @@ Complete changelog:
19011901
* feat: add readme for ton plugin by @chandiniv1 in https://github.com/elizaOS/eliza/pull/1496
19021902
* feat: add readme for websearch plugin by @chandiniv1 in https://github.com/elizaOS/eliza/pull/1494
19031903
* chore: fix typos by @qwdsds in https://github.com/elizaOS/eliza/pull/1489
1904-
* docs: Fixed a small syntax issue in the ModelClass Update fine-tuning.md by @mdqst in https://github.com/elizaOS/eliza/pull/1493
1904+
* docs: Fixed a small syntax issue in the ModelType Update fine-tuning.md by @mdqst in https://github.com/elizaOS/eliza/pull/1493
19051905
* add CODE_OF_CONDUCT.md by @nulLeeKH in https://github.com/elizaOS/eliza/pull/1487
19061906
* fix: remove `type` when import from `elizaos` by @tomguluson92 in https://github.com/elizaOS/eliza/pull/1492
19071907
* fix: improve Twitter client dry run mode and configuration logging by @e-fu in https://github.com/elizaOS/eliza/pull/1498

packages/plugin-anthropic/src/index.ts

+25-25
Original file line numberDiff line numberDiff line change
@@ -242,18 +242,18 @@ export const anthropicPlugin: Plugin = {
242242
}
243243

244244
// Validate against schema if provided
245-
if (params.schema) {
246-
try {
247-
return z.object(params.schema).parse(jsonObject);
248-
} catch (zodError) {
249-
logger.error('Schema validation failed:', zodError);
250-
// If we have partial data that matches the schema structure, return what we have
251-
if (isReflection && jsonObject.thought) {
252-
return jsonObject;
253-
}
254-
throw zodError;
255-
}
256-
}
245+
// if (params.schema) {
246+
// try {
247+
// return z.object(params.schema).parse(jsonObject);
248+
// } catch (zodError) {
249+
// logger.error('Schema validation failed:', zodError);
250+
// // If we have partial data that matches the schema structure, return what we have
251+
// if (isReflection && jsonObject.thought) {
252+
// return jsonObject;
253+
// }
254+
// throw zodError;
255+
// }
256+
// }
257257

258258
return jsonObject;
259259
} catch (parseError) {
@@ -267,7 +267,7 @@ export const anthropicPlugin: Plugin = {
267267
}
268268
},
269269

270-
[ModelTypes.OBJECT_LARGE]: async (runtime, params: ObjectGenerationParams) => {
270+
[ModelType.OBJECT_LARGE]: async (runtime, params: ObjectGenerationParams) => {
271271
const largeModel = runtime.getSetting('ANTHROPIC_LARGE_MODEL') ?? 'claude-3-5-sonnet-latest';
272272
try {
273273
// Check if this is a reflection schema request (has specific format)
@@ -413,18 +413,18 @@ export const anthropicPlugin: Plugin = {
413413
}
414414

415415
// Validate against schema if provided
416-
if (params.schema) {
417-
try {
418-
return z.object(params.schema).parse(jsonObject);
419-
} catch (zodError) {
420-
logger.error('Schema validation failed:', zodError);
421-
// If we have partial data that matches the schema structure, return what we have
422-
if (isReflection && jsonObject.thought) {
423-
return jsonObject;
424-
}
425-
throw zodError;
426-
}
427-
}
416+
// if (params.schema) {
417+
// try {
418+
// return z.object(params.schema).parse(jsonObject);
419+
// } catch (zodError) {
420+
// logger.error('Schema validation failed:', zodError);
421+
// // If we have partial data that matches the schema structure, return what we have
422+
// if (isReflection && jsonObject.thought) {
423+
// return jsonObject;
424+
// }
425+
// throw zodError;
426+
// }
427+
// }
428428

429429
return jsonObject;
430430
} catch (parseError) {

packages/plugin-anthropic/tsconfig.json

+18-5
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,25 @@
22
"compilerOptions": {
33
"outDir": "dist",
44
"rootDir": "src",
5-
"types": ["node"],
6-
"moduleResolution": "NodeNext",
7-
"module": "NodeNext",
5+
"baseUrl": "../..",
6+
"lib": ["ESNext"],
87
"target": "ESNext",
9-
"allowSyntheticDefaultImports": true,
10-
"baseUrl": ".",
8+
"module": "Preserve",
9+
"moduleResolution": "Bundler",
10+
"strict": false,
11+
"esModuleInterop": true,
12+
"skipLibCheck": true,
13+
"forceConsistentCasingInFileNames": false,
14+
"allowImportingTsExtensions": true,
15+
"declaration": true,
16+
"emitDeclarationOnly": true,
17+
"resolveJsonModule": true,
18+
"noImplicitAny": false,
19+
"allowJs": true,
20+
"checkJs": false,
21+
"noEmitOnError": false,
22+
"moduleDetection": "force",
23+
"allowArbitraryExtensions": true,
1124
"paths": {
1225
"@elizaos/core": ["../core/src"],
1326
"@elizaos/core/*": ["../core/src/*"]

packages/plugin-discord/__tests__/util.test.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import { getWavHeader, sendMessageInChunks } from '../src/utils';
55
vi.mock('@elizaos/core', () => ({
66
trimTokens: vi.fn((text) => Promise.resolve(text)),
77
parseJSONObjectFromText: vi.fn((text) => JSON.parse(text)),
8-
ModelTypes: { TEXT_SMALL: 'TEXT_SMALL' },
8+
ModelType: { TEXT_SMALL: 'TEXT_SMALL' },
99
logger: {
1010
error: vi.fn(),
1111
},

packages/plugin-local-ai/README.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -98,34 +98,34 @@ The plugin provides these model classes:
9898

9999
```typescript
100100
const { title, description } = await runtime.useModel(
101-
ModelClass.IMAGE_DESCRIPTION,
101+
ModelType.IMAGE_DESCRIPTION,
102102
'https://example.com/image.jpg'
103103
);
104104
```
105105

106106
### Text-to-Speech
107107

108108
```typescript
109-
const audioStream = await runtime.useModel(ModelClass.TEXT_TO_SPEECH, 'Text to convert to speech');
109+
const audioStream = await runtime.useModel(ModelType.TEXT_TO_SPEECH, 'Text to convert to speech');
110110
```
111111

112112
### Audio Transcription
113113

114114
```typescript
115-
const transcription = await runtime.useModel(ModelClass.TRANSCRIPTION, audioBuffer);
115+
const transcription = await runtime.useModel(ModelType.TRANSCRIPTION, audioBuffer);
116116
```
117117

118118
### Text Generation
119119

120120
```typescript
121121
// Using small model
122-
const smallResponse = await runtime.useModel(ModelClass.TEXT_SMALL, {
122+
const smallResponse = await runtime.useModel(ModelType.TEXT_SMALL, {
123123
context: 'Generate a short response',
124124
stopSequences: [],
125125
});
126126

127127
// Using large model
128-
const largeResponse = await runtime.useModel(ModelClass.TEXT_LARGE, {
128+
const largeResponse = await runtime.useModel(ModelType.TEXT_LARGE, {
129129
context: 'Generate a detailed response',
130130
stopSequences: [],
131131
});

packages/plugin-local-ai/__tests__/image-desc.test.ts

+6-6
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import fs from 'node:fs';
22
import path from 'node:path';
3-
import { ModelTypes, type Plugin } from '@elizaos/core';
3+
import { ModelType, type Plugin } from '@elizaos/core';
44
import { logger } from '@elizaos/core';
55
import type {
66
Florence2ForConditionalGeneration,
@@ -127,7 +127,7 @@ describe('LocalAI Image Description', () => {
127127
logger.info('Testing with image URL:', imageUrl);
128128

129129
try {
130-
const result = await mockRuntime.useModel(ModelTypes.IMAGE_DESCRIPTION, imageUrl);
130+
const result = await mockRuntime.useModel(ModelType.IMAGE_DESCRIPTION, imageUrl);
131131

132132
// if result is not an object, throw an error
133133
if (typeof result !== 'object') {
@@ -168,7 +168,7 @@ describe('LocalAI Image Description', () => {
168168
logger.info('Testing with invalid URL:', invalidUrl);
169169

170170
try {
171-
await mockRuntime.useModel(ModelTypes.IMAGE_DESCRIPTION, invalidUrl);
171+
await mockRuntime.useModel(ModelType.IMAGE_DESCRIPTION, invalidUrl);
172172
throw new Error("Should have failed but didn't");
173173
} catch (error) {
174174
logger.info('Invalid URL test failed as expected:', {
@@ -186,7 +186,7 @@ describe('LocalAI Image Description', () => {
186186
const invalidInput = { url: 'not-a-string' };
187187

188188
try {
189-
await mockRuntime.useModel(ModelTypes.IMAGE_DESCRIPTION, invalidInput as unknown);
189+
await mockRuntime.useModel(ModelType.IMAGE_DESCRIPTION, invalidInput as unknown);
190190
throw new Error("Should have failed but didn't");
191191
} catch (error) {
192192
logger.info('Non-string input test failed as expected:', {
@@ -218,7 +218,7 @@ describe('LocalAI Image Description', () => {
218218
});
219219

220220
try {
221-
await mockRuntime.useModel(ModelTypes.IMAGE_DESCRIPTION, imageUrl);
221+
await mockRuntime.useModel(ModelType.IMAGE_DESCRIPTION, imageUrl);
222222
throw new Error("Should have failed but didn't");
223223
} catch (error) {
224224
logger.info('Vision model failure test failed as expected:', {
@@ -239,7 +239,7 @@ describe('LocalAI Image Description', () => {
239239
const textUrl = 'https://raw.githubusercontent.com/microsoft/FLAML/main/README.md';
240240

241241
try {
242-
await mockRuntime.useModel(ModelTypes.IMAGE_DESCRIPTION, textUrl);
242+
await mockRuntime.useModel(ModelType.IMAGE_DESCRIPTION, textUrl);
243243
throw new Error("Should have failed but didn't");
244244
} catch (error) {
245245
logger.info('Non-image content test failed as expected:', {

0 commit comments

Comments
 (0)