Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/kierunb/OpenAI-Workshop
https://github.com/kierunb/OpenAI-Workshop
Last synced: about 1 month ago
JSON representation
- Host: GitHub
- URL: https://github.com/kierunb/OpenAI-Workshop
- Owner: kierunb
- Created: 2023-11-23T20:04:24.000Z (about 1 year ago)
- Default Branch: master
- Last Pushed: 2023-11-24T16:58:11.000Z (about 1 year ago)
- Last Synced: 2024-08-01T13:22:33.013Z (4 months ago)
- Language: C#
- Size: 16.6 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
Awesome Lists containing this project
- awesome-semantickernel - OpenAI-Workshop
README
# OpenAI Workshop
## Essential links
- How Generative AI works:
- https://ig.ft.com/generative-ai/
- Course: https://github.com/microsoft/generative-ai-for-beginners
- Embedding
- https://www.cs.cmu.edu/~dst/WordEmbeddingDemo/tutorial.html
- Demo: https://www.cs.cmu.edu/~dst/WordEmbeddingDemo/index.html
- Azure Search Vector Samples
§ https://github.com/Azure/azure-search-vector-samples
§ https://github.com/Azure/azure-search-vector-samples/blob/main/demo-dotnet/DotNetVectorDemo/Program.cs
- Prompting
- https://www.promptingguide.ai/
- Best practices: https://help.openai.com/en/articles/6654000-best-practices-for-prompt-engineering-with-openai-api
- Semantic Kernel
- https://learn.microsoft.com/en-us/semantic-kernel/overview/
- https://github.com/microsoft/semantic-kernel
- Kernel Memory
- https://github.com/microsoft/kernel-memory
- Architecture
- https://github.com/Azure-Samples/miyagiSamples:
- https://github.com/MicrosoftDocs/semantic-kernel-docs### appsetting.json
```
"AzureChatCompletionService": {
"ModelId": "gpt-4",
"Endpoint": "",
"Key": "bc8469703a884c6496ac3202a1fa1518"
},
"AzureTextCompletionService": {
"ModelId": "gpt-35-turbo",
"Endpoint": "",
"Key": ""
}
```