Skip to content

Commit bfe2d28

Browse files
authored
Update README.MD
collect test statemant error : Failed to execute query. Error: Procedure or function 'get_embedding' expects parameter '@error', which was not supplied.
1 parent f42d5d5 commit bfe2d28

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

README.MD

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -89,8 +89,10 @@ To test that database deployment was successful and that OpenAI connection is wo
8989

9090
```sql
9191
declare @v vector(1536)
92-
exec [web].[get_embedding] 'just a sample text', @v output
93-
select @v
92+
declare @e varchar(max)
93+
exec [web].[get_embedding] 'just a sample text', @v output ,@e output
94+
select @v,@e
95+
9496
```
9597

9698
if no error are returned, you'll get a vector as a result.

0 commit comments

Comments
 (0)