Skip to content

Commit

Permalink
Add shebangs to all example scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
cool-RR committed Dec 20, 2023
1 parent 1ba8755 commit f40e04a
Show file tree
Hide file tree
Showing 8 changed files with 16 additions and 0 deletions.
2 changes: 2 additions & 0 deletions examples/async_chat_no_streaming.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
#!/usr/bin/env python

import asyncio
import os

Expand Down
2 changes: 2 additions & 0 deletions examples/async_chat_with_streaming.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
#!/usr/bin/env python

import asyncio
import os

Expand Down
2 changes: 2 additions & 0 deletions examples/async_embeddings.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
#!/usr/bin/env python

import asyncio
import os

Expand Down
2 changes: 2 additions & 0 deletions examples/async_list_models.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
#!/usr/bin/env python

import asyncio
import os

Expand Down
2 changes: 2 additions & 0 deletions examples/chat_no_streaming.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
#!/usr/bin/env python

import os

from mistralai.client import MistralClient
Expand Down
2 changes: 2 additions & 0 deletions examples/chat_with_streaming.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
#!/usr/bin/env python

import os

from mistralai.client import MistralClient
Expand Down
2 changes: 2 additions & 0 deletions examples/embeddings.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
#!/usr/bin/env python

import os

from mistralai.client import MistralClient
Expand Down
2 changes: 2 additions & 0 deletions examples/list_models.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
#!/usr/bin/env python

import os

from mistralai.client import MistralClient
Expand Down

0 comments on commit f40e04a

Please sign in to comment.