mirror of
https://github.com/ollama/ollama-python.git
synced 2026-05-03 12:52:35 +00:00
Fixing empty header + ensuring security (#313)
* Fixing empty header + ensuring security
This commit is contained in:
committed by
Michael Yang
parent
f25834217b
commit
72052188c3
@@ -968,3 +968,19 @@ async def test_async_client_copy(httpserver: HTTPServer):
|
||||
client = AsyncClient(httpserver.url_for('/api/copy'))
|
||||
response = await client.copy('dum', 'dummer')
|
||||
assert response['status'] == 'success'
|
||||
|
||||
|
||||
def test_headers():
|
||||
client = Client()
|
||||
assert client._client.headers['content-type'] == 'application/json'
|
||||
assert client._client.headers['accept'] == 'application/json'
|
||||
assert client._client.headers['user-agent'].startswith('ollama-python/')
|
||||
|
||||
client = Client(
|
||||
headers={
|
||||
'X-Custom': 'value',
|
||||
'Content-Type': 'text/plain',
|
||||
}
|
||||
)
|
||||
assert client._client.headers['x-custom'] == 'value'
|
||||
assert client._client.headers['content-type'] == 'application/json'
|
||||
|
||||
Reference in New Issue
Block a user