@synova-cloud/sdk 1.1.1 → 1.1.2
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 +0 -17
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -119,21 +119,6 @@ const response = await client.prompts.execute('prm_abc123', {
|
|
|
119
119
|
});
|
|
120
120
|
```
|
|
121
121
|
|
|
122
|
-
#### With Metadata (Analytics)
|
|
123
|
-
|
|
124
|
-
```typescript
|
|
125
|
-
const response = await client.prompts.execute('prm_abc123', {
|
|
126
|
-
provider: 'openai',
|
|
127
|
-
model: 'gpt-4o',
|
|
128
|
-
variables: { query: 'Hello' },
|
|
129
|
-
metadata: {
|
|
130
|
-
userId: 'user_123',
|
|
131
|
-
sessionId: 'sess_456',
|
|
132
|
-
environment: 'production',
|
|
133
|
-
},
|
|
134
|
-
});
|
|
135
|
-
```
|
|
136
|
-
|
|
137
122
|
#### With Conversation History
|
|
138
123
|
|
|
139
124
|
```typescript
|
|
@@ -166,8 +151,6 @@ if (response.type === 'image') {
|
|
|
166
151
|
}
|
|
167
152
|
```
|
|
168
153
|
|
|
169
|
-
#### With Tool Calls
|
|
170
|
-
|
|
171
154
|
### Models
|
|
172
155
|
|
|
173
156
|
#### List All Models
|