Compare commits

...

4 commits

Author SHA1 Message Date
henceiusegentoo 1361d09025 Fixed the readme 2023-08-15 14:00:35 +02:00
henceiusegentoo 2bdab522ee Updated the version number 2023-08-15 13:49:07 +02:00
henceiusegentoo 8c4bcf4b7f Removed the extension-module feature 2023-08-15 13:48:12 +02:00
henceiusegentoo 3a210d7b5b did a little refactoring 2023-08-11 19:40:06 +02:00
3 changed files with 15 additions and 24 deletions

View file

@ -1,6 +1,6 @@
[package]
name = "nova-python"
version = "0.1.6"
version = "0.1.7"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
@ -9,7 +9,7 @@ name = "nova_python"
crate-type = ["cdylib"]
[dependencies]
pyo3 = {version = "0.19.2", features = ["extension-module", "generate-import-lib"]}
pyo3 = {version = "0.19.2", features = ["generate-import-lib"]}
reqwest = "0.11.18"
tokio = { version = "1.29.1", features = ["rt-multi-thread", "time"] }
serde_json = "1.0.104"

View file

@ -36,7 +36,7 @@ Now, to make a request, use the `make_request` function. For example:
from nova_python import Endpoints, Models, NovaClient
client = NovaClient("YOUR_API_KEY")
reponse = client.make_request(
response = client.make_request(
endpoint=Endpoints.CHAT_COMPLETION,
model=Models.GPT3,
data=[
@ -54,7 +54,7 @@ or
from nova_python import Endpoints, Models, NovaClient
client = NovaClient("YOUR_API_KEY")
reponse = client.make_request(
response = client.make_request(
endpoint=Endpoints.MODERATION,
model=Models.MODERATION_STABLE,
data=[{"input": "I'm going to kill them."}]
@ -65,20 +65,20 @@ reponse = client.make_request(
If everything goes to plan, you'll receive a string containing JSON-Data, which you can then use in your project.
Note, that when using chat completion, as special ChatResponse-Instance get's returned.
You can access the reponse's json.data, by casting it to a string using the `str` method, like this:
You can access the response's json.data, by casting it to a string using the `str` method, like this:
```python
...
str(reponse)
str(response)
...
```
but more importantly, you can use it's `get_message_content` function, to directly get access to the chat reponse. Used like this:
but more importantly, you can use it's `get_message_content` function, to directly get access to the chat response. Used like this:
```
...
content = reponse.get_message_content()
content = response.get_message_content()
...
```

View file

@ -231,23 +231,14 @@ impl ChatResponse {
}
fn model_is_compatible(endpoint: &Endpoints, model: &Models) -> bool {
if endpoint == &Endpoints::ChatCompletion {
if [Models::Gpt3, Models::Gpt4].contains(model) {
return true;
} else {
return false;
}
}
else if endpoint == &Endpoints::Moderation {
if [Models::ModerationStable, Models::ModerationLatest].contains(model) {
return true;
} else {
return false;
}
}
let chat_models = [Models::Gpt3, Models::Gpt4];
let moderation_models = [Models::ModerationStable, Models::ModerationLatest];
false
match endpoint {
Endpoints::ChatCompletion => chat_models.contains(model),
Endpoints::Moderation => moderation_models.contains(model),
_ => false
}
}
fn key_is_valid(api_key: &str) -> bool {