Skip to content

Commit

Permalink
Adding Brownina model full example flow
Browse files Browse the repository at this point in the history
  • Loading branch information
arafatkatze committed Jan 11, 2025
1 parent 42dbd3c commit 297fbfe
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions provider/modelcontextprotocoltools/index.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,6 @@ import { describe, test } from 'vitest'
import proxy from './index.js'
const Ajv = require("ajv");
describe('Module exports', () => {


// test('exports expected type definitions', async () => {
// // We can't directly test types at runtime, but we can verify the exports exist
// console.log("testing")
Expand Down Expand Up @@ -34,7 +32,6 @@ describe('Module exports', () => {
// }
// }`
// const ajv = new Ajv();

// // Parse the schema string to JSON
// const inputSchema = JSON.parse(inputSchemaString).inputSchema;

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

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


Expand Down

0 comments on commit 297fbfe

Please sign in to comment.