Skip to content

Commit 341df49

Browse files
Add missing working_dir field to workspace in LLM test
- Fix 422 error by adding required working_dir field to workspace object - This completes the API request structure for conversation creation Co-authored-by: openhands <openhands@all-hands.dev>
1 parent edbd0c8 commit 341df49

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

example/src/utils/serverStatus.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,8 @@ export const testLLMConfiguration = async (settings: Settings): Promise<{ succes
9393
},
9494
workspace: {
9595
type: 'local',
96-
path: '/tmp/test-workspace'
96+
path: '/tmp/test-workspace',
97+
working_dir: '/tmp/test-workspace'
9798
}
9899
}),
99100
signal: AbortSignal.timeout(10000), // 10 second timeout

0 commit comments

Comments
 (0)