Skip to content

Commit 297fbfe

Browse files
committed
Adding Brownina model full example flow
1 parent 42dbd3c commit 297fbfe

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

provider/modelcontextprotocoltools/index.test.ts

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,6 @@ import { describe, test } from 'vitest'
22
import proxy from './index.js'
33
const Ajv = require("ajv");
44
describe('Module exports', () => {
5-
6-
75
// test('exports expected type definitions', async () => {
86
// // We can't directly test types at runtime, but we can verify the exports exist
97
// console.log("testing")
@@ -34,7 +32,6 @@ describe('Module exports', () => {
3432
// }
3533
// }`
3634
// const ajv = new Ajv();
37-
3835
// // Parse the schema string to JSON
3936
// const inputSchema = JSON.parse(inputSchemaString).inputSchema;
4037

@@ -80,7 +77,7 @@ describe('Module exports', () => {
8077
const isValidInput = ajv.validate(inputSchema, validInput);
8178
console.log('Valid input:', isValidInput, validInput);
8279

83-
const items = await proxy.items!({ mention: { uri: 'test', title: 'echo', data: { message: 'hello' } } }, {})
80+
const items = await proxy.items!({ mention: { uri: '', title: 'brownianModel', data: { message: 'hello to me' } } }, {})
8481
console.log(items)
8582

8683

0 commit comments

Comments
 (0)