Skip to content

Commit 2af0cb8

Browse files
authored
Cleanup eval-server and renamed to agent-server (#62)
1 parent 8b5e408 commit 2af0cb8

File tree

224 files changed

+2943
-19507
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

224 files changed

+2943
-19507
lines changed

MODEL-CONFIGS.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -267,12 +267,12 @@ private async handleLLMConfigurationRequest(request: LLMConfigurationRequest): P
267267

268268
### Per-Request Override (Temporary)
269269
```typescript
270-
// eval-server sends evaluation with custom config
270+
// agent-server sends request with custom config
271271
{
272272
"jsonrpc": "2.0",
273273
"method": "evaluate",
274274
"params": {
275-
"evaluationId": "eval-123",
275+
"requestId": "req-123",
276276
"tool": "chat",
277277
"input": { "message": "Hello" },
278278
"model": {
@@ -287,7 +287,7 @@ private async handleLLMConfigurationRequest(request: LLMConfigurationRequest): P
287287

288288
### Persistent Configuration
289289
```typescript
290-
// eval-server sets persistent configuration
290+
// agent-server sets persistent configuration
291291
{
292292
"jsonrpc": "2.0",
293293
"method": "configure_llm",
@@ -346,7 +346,7 @@ private async handleLLMConfigurationRequest(request: LLMConfigurationRequest): P
346346
### ✅ Phase 3: Persistent Configuration API (COMPLETED)
347347
8.**Extend EvaluationProtocol** with `configure_llm` method
348348
9.**Implement `configure_llm` handler** in EvaluationAgent
349-
10. 🔄 **Add eval-server support** for persistent configuration (server-side implementation needed)
349+
10. 🔄 **Add agent-server support** for persistent configuration (server-side implementation needed)
350350
11.**Add configuration validation** and error handling
351351

352352
### 🔄 Phase 4: Testing & Documentation (NEXT)
File renamed without changes.

agent-server/.gitignore

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
.env
2+
node_modules
3+
*.log
4+
5+
# Exclude all client configuration files
6+
nodejs/clients/*.yaml
7+
nodejs/clients/*.yml
8+
9+
# But keep the example file
10+
!nodejs/clients/example-client.yaml

0 commit comments

Comments
 (0)