Skip to content

Latest commit

 

History

History
61 lines (51 loc) · 1.79 KB

File metadata and controls

61 lines (51 loc) · 1.79 KB

My Study Repository

.NET GitHub commit activity

Welcome to my study repository! This collection contains various projects and examples that I use to learn and experiment with different concepts, frameworks, and technologies. Feel free to explore and share.

Structure

This repository is organized into different technology areas, each containing multiple projects that explore various concepts and techniques.

Technologies Used

Todo: Make a list

Example secrets.json format

{
  "OpenAI:ApiKey": "sk-proj-...",
  "AzureFoundry": {
    "DeploymentName": "gpt-4.1",
    "Endpoint": "https://your-foundry-endpoint",
    "ApiKey": "your-foundry-key"
  },
  "AzureFoundryEmbeddings": {
    "DeploymentName": "text-embedding-3-large",
    "Endpoint": "https://your-foundry-endpoint",
    "ApiKey": "your-foundry-key"
  },
  "AzureAnthropic": {
    "DeploymentName": "claude-sonnet-3-5",
    "Endpoint": "https://your-anthropic-endpoint",
    "ApiKey": "your-anthropic-key"
  },
  "GoogleTextSearch": {
    "SearchEngineId": "your-search-engine-id",
    "ApiKey": "your-google-api-key"
  },
  "BingTextSearch": {
    "ApiKey": "your-bing-search-key"
  },
  "TavilyTextSearch": {
    "ApiKey": "your-tavily-key"
  },
  "Mem0": {
    "ApiKey": "your-mem0-key"
  },
  "MicrosoftFoundry": {
    "Endpoint": "https://your-foundry-endpoint",
    "ApiKey": "your-foundry-key"
  },
  "ApplicationInsights": {
    "ConnectionString": "InstrumentationKey=your-key;..."
  }
}

        
*Happy Coding and learning! 🚀