coaiajs 0.3.2 → 0.4.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +12 -4
- package/agents/custom_gpt/ceremony.yml +3341 -0
- package/dist/mcp/config.d.ts.map +1 -1
- package/dist/mcp/config.js +0 -2
- package/dist/mcp/config.js.map +1 -1
- package/dist/mcp/server.js +3 -8
- package/dist/mcp/server.js.map +1 -1
- package/dist/mcp/tools/coaiapy-tools.d.ts.map +1 -1
- package/dist/mcp/tools/coaiapy-tools.js +3 -18
- package/dist/mcp/tools/coaiapy-tools.js.map +1 -1
- package/dist/src/cli.js +169 -98
- package/dist/src/cli.js.map +1 -1
- package/dist/src/langfuse/client.d.ts +44 -11
- package/dist/src/langfuse/client.d.ts.map +1 -1
- package/dist/src/langfuse/client.js +171 -8
- package/dist/src/langfuse/client.js.map +1 -1
- package/dist/src/langfuse/comments.js +2 -2
- package/dist/src/langfuse/comments.js.map +1 -1
- package/dist/src/langfuse/index.d.ts +5 -3
- package/dist/src/langfuse/index.d.ts.map +1 -1
- package/dist/src/langfuse/index.js +3 -2
- package/dist/src/langfuse/index.js.map +1 -1
- package/dist/src/langfuse/observations.d.ts +37 -2
- package/dist/src/langfuse/observations.d.ts.map +1 -1
- package/dist/src/langfuse/observations.js +132 -61
- package/dist/src/langfuse/observations.js.map +1 -1
- package/dist/src/langfuse/projects.d.ts +2 -0
- package/dist/src/langfuse/projects.d.ts.map +1 -0
- package/dist/src/langfuse/projects.js +8 -0
- package/dist/src/langfuse/projects.js.map +1 -0
- package/dist/src/langfuse/prompts.d.ts +1 -0
- package/dist/src/langfuse/prompts.d.ts.map +1 -1
- package/dist/src/langfuse/prompts.js +53 -0
- package/dist/src/langfuse/prompts.js.map +1 -1
- package/dist/src/langfuse/scores.d.ts +9 -3
- package/dist/src/langfuse/scores.d.ts.map +1 -1
- package/dist/src/langfuse/scores.js +33 -22
- package/dist/src/langfuse/scores.js.map +1 -1
- package/dist/src/langfuse/traces.d.ts +16 -5
- package/dist/src/langfuse/traces.d.ts.map +1 -1
- package/dist/src/langfuse/traces.js +112 -105
- package/dist/src/langfuse/traces.js.map +1 -1
- package/llms-full.txt +9 -6
- package/llms.txt +3 -3
- package/package.json +7 -2
- package/rispecs/03-langfuse-module.spec.md +5 -0
- package/rispecs/08-cli-interface.spec.md +8 -5
- package/rispecs/09-mcp-server.spec.md +2 -2
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
|
|
5
5
|
## Desired Outcome
|
|
6
6
|
|
|
7
|
-
A single MCP server (`coaiajs-mcp`) that consolidates the 44 tools from coaia-narrative (27), coaia-pde (12), and coaia-planning (5) into one server, adds
|
|
7
|
+
A single MCP server (`coaiajs-mcp`) that consolidates the 44 tools from coaia-narrative (27), coaia-pde (12), and coaia-planning (5) into one server, adds 19 new tools for Redis, Langfuse, pipeline, and audio, and supports feature gating so resource-constrained environments can load only what they need.
|
|
8
8
|
|
|
9
9
|
## Structural Tension
|
|
10
10
|
|
|
@@ -94,7 +94,7 @@ MMOT: `perform_mmot_evaluation`, `init_llm_guidance`
|
|
|
94
94
|
|
|
95
95
|
### Langfuse
|
|
96
96
|
|
|
97
|
-
`coaia_fuse_trace_create`, `coaia_fuse_add_observation`, `
|
|
97
|
+
`coaia_fuse_trace_create`, `coaia_fuse_add_observation`, `coaia_fuse_trace_get`, `coaia_fuse_trace_view`, `coaia_fuse_observation_get`, `coaia_fuse_traces_list`, `coaia_fuse_traces_session_view`, comments, prompts, datasets, score configs, score application, and media tools.
|
|
98
98
|
|
|
99
99
|
### Resources
|
|
100
100
|
|