kopia lustrzana https://github.com/transitive-bullshit/chatgpt-api
18 wiersze
342 B
TypeScript
18 wiersze
342 B
TypeScript
![]() |
import 'dotenv/config'
|
||
|
|
||
|
import { defineConfig } from '@agentic/platform'
|
||
|
|
||
|
export default defineConfig({
|
||
|
name: 'search',
|
||
|
originUrl: process.env.MCP_ORIGIN_URL!,
|
||
|
originAdapter: {
|
||
|
type: 'mcp'
|
||
|
},
|
||
|
toolConfigs: [
|
||
|
{
|
||
|
name: 'search',
|
||
|
cacheControl: 'public, max-age=60, s-maxage=60 stale-while-revalidate=10'
|
||
|
}
|
||
|
]
|
||
|
})
|