Skip to content

Commit

Permalink
docs: Added Acknowledgments.
Browse files Browse the repository at this point in the history
  • Loading branch information
HavenDV committed Sep 6, 2024
1 parent 481fb84 commit d898b32
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 3 deletions.
12 changes: 11 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,4 +23,14 @@ using var api = new CohereApi(apiKey);

Priority place for bugs: https://github.com/tryAGI/Cohere/issues
Priority place for ideas and general questions: https://github.com/tryAGI/Cohere/discussions
Discord: https://discord.gg/Ca2xhfBf3v
Discord: https://discord.gg/Ca2xhfBf3v

## Acknowledgments

![JetBrains logo](https://resources.jetbrains.com/storage/products/company/brand/logos/jetbrains.png)

This project is supported by JetBrains through the [Open Source Support Program](https://jb.gg/OpenSourceSupport).

![CodeRabbit logo](https://opengraph.githubassets.com/1c51002d7d0bbe0c4fd72ff8f2e58192702f73a7037102f77e4dbb98ac00ea8f/marketplace/coderabbitai)

This project is supported by CodeRabbit through the [Open Source Support Program](https://github.com/marketplace/coderabbitai).
2 changes: 1 addition & 1 deletion src/helpers/FixOpenApiSpec/Properties/launchSettings.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"profiles": {
"FixOpenApiSpec": {
"commandName": "Project",
"commandLineArgs": "../../../../../../src/libs/HuggingFace/openapi.yaml"
"commandLineArgs": "../../../../../../src/libs/Cohere/openapi.yaml"
}
}
}
2 changes: 1 addition & 1 deletion src/helpers/GenerateDocs/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
code = code
.Replace(
"using var api = GetAuthorizedApi();",
"using var api = new HuggingFaceApi(apiKey);")
"using var api = new CohereApi(apiKey);")
;

var newPath = Path.Combine(newDir, $"{Path.GetExtension(Path.GetFileNameWithoutExtension(path)).TrimStart('.')}.md");
Expand Down

0 comments on commit d898b32

Please sign in to comment.