We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8d7b032 commit 3f88254Copy full SHA for 3f88254
README.md
@@ -22,7 +22,13 @@ Instantiate and use the client with the following:
22
```typescript
23
import { phenomlClient } from "phenoml";
24
25
-const client = new phenomlClient({ token: "YOUR_TOKEN" });
+const client = new PhenoMLClient({
26
+ username: "your_username",
27
+ password: "your_password",
28
+ baseUrl: "https://your-phenoml-instance.com"
29
+ });
30
+
31
32
await client.agent.create({
33
name: "name",
34
prompts: ["prompt_123", "prompt_456"],
0 commit comments