kopia lustrzana https://github.com/transitive-bullshit/chatgpt-api
22 wiersze
394 B
TypeScript
22 wiersze
394 B
TypeScript
import { defineConfig } from '@agentic/platform'
|
|
|
|
export default defineConfig({
|
|
name: 'Test Basic OpenAPI',
|
|
slug: 'test-basic-openapi',
|
|
origin: {
|
|
type: 'openapi',
|
|
url: 'https://jsonplaceholder.typicode.com',
|
|
spec: './jsonplaceholder.json'
|
|
},
|
|
toolConfigs: [
|
|
{
|
|
name: 'get_posts',
|
|
pure: true
|
|
},
|
|
{
|
|
name: 'get_post',
|
|
pure: true
|
|
}
|
|
]
|
|
})
|