Skip to content

Commit ae5b089

Browse files
committed
chore: clean up
1 parent c67b6d1 commit ae5b089

File tree

2 files changed

+0
-5
lines changed

2 files changed

+0
-5
lines changed

packages/agent-api/src/functions/chats-post.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -203,8 +203,6 @@ export async function postChats(request: HttpRequest, context: InvocationContext
203203
// Transform the response chunks into a JSON stream
204204
async function* createJsonStream(chunks: AsyncIterable<StreamEvent>, sessionId: string, onComplete: (responseContent: string) => Promise<void>) {
205205
for await (const chunk of chunks) {
206-
console.log(chunk);
207-
208206
const data = chunk.data;
209207
let responseChunk: AIChatCompletionDelta | undefined;
210208

packages/burger-mcp/src/mcp.ts

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,6 @@ export function createMcpTool<T extends z.ZodTypeAny>(
2727
if (!options.schema) {
2828
server.tool(options.name, options.description, async () => {
2929
try {
30-
// console.log("Executing MCP tool:", toolArguments.name);
3130
const result = await options.handler(undefined as any);
3231
return {
3332
content: [
@@ -54,8 +53,6 @@ export function createMcpTool<T extends z.ZodTypeAny>(
5453
} else {
5554
server.tool(options.name, options.description, options.schema.shape, async (args: z.ZodRawShape) => {
5655
try {
57-
// console.log("Executing MCP tool:", toolArguments.name);
58-
// console.log("Tool arguments:", args);
5956
const result = await options.handler(args);
6057
return {
6158
content: [

0 commit comments

Comments
 (0)