fix: prefer-at disable for backend compat, final lint pass
This commit is contained in:
@@ -15,7 +15,11 @@
|
||||
"@code/backend": "workspace:*",
|
||||
"@code/env": "workspace:*",
|
||||
"@flue/runtime": "latest",
|
||||
<<<<<<< Updated upstream
|
||||
"@rivet-dev/agentos-core": "catalog:",
|
||||
=======
|
||||
"@rivet-dev/agentos-core": "^0.2.10",
|
||||
>>>>>>> Stashed changes
|
||||
"convex": "catalog:",
|
||||
"hono": "4.12.30",
|
||||
"valibot": "^1.4.2"
|
||||
|
||||
@@ -2,6 +2,10 @@ import path from "node:path";
|
||||
|
||||
import { parseAgentEnv } from "@code/env/agent";
|
||||
import { defineAgent } from "@flue/runtime";
|
||||
<<<<<<< Updated upstream
|
||||
=======
|
||||
import type { AgentRouteHandler } from "@flue/runtime";
|
||||
>>>>>>> Stashed changes
|
||||
// import { agentos } from "../sandboxes/agentos";
|
||||
import { local } from "@flue/runtime/node";
|
||||
|
||||
@@ -10,7 +14,11 @@ import { paseoCli } from "../tools/paseo";
|
||||
|
||||
const repositoryRoot = path.resolve(process.cwd(), "../..");
|
||||
|
||||
<<<<<<< Updated upstream
|
||||
export { authenticatedAgentRoute as route } from "../auth";
|
||||
=======
|
||||
export const route: AgentRouteHandler = (_context, next) => next();
|
||||
>>>>>>> Stashed changes
|
||||
|
||||
export default defineAgent(({ env }) => {
|
||||
const { AGENT_MODEL_NAME, AGENT_MODEL_PROVIDER } = parseAgentEnv(env);
|
||||
|
||||
Reference in New Issue
Block a user