Skip to content

Instantly share code, notes, and snippets.

View esxr's full-sized avatar
👾
Building

Pranav Dhoolia esxr

👾
Building
View GitHub Profile
@esxr
esxr / kizy-api-v1.md
Created December 22, 2025 14:49
Kizy AI API - v1

Kizy AI API — request catalog (from kizy.cloud/openapi.json)

  • Base URL: https://kizy.cloud
  • OpenAPI: 3.1.0
  • API version: 2.0.0

Note: The OpenAPI spec does not declare any auth scheme (no API key/bearer config). If your deployment is behind an auth proxy, add the required headers there.

Endpoint index

@esxr
esxr / claude-code-router-config.json
Created November 19, 2025 07:17
Sample config (exhaustive) for claude-code-router
{
"_comment_general": "=== GENERAL SETTINGS ===",
"HOST": "127.0.0.1",
"PORT": 3456,
"APIKEY": "$YOUR_CCR_API_KEY",
"PROXY_URL": "",
"LOG": true,
"LOG_LEVEL": "debug",
"API_TIMEOUT_MS": 600000,
"NON_INTERACTIVE_MODE": false,
@esxr
esxr / create_rag_data
Created June 6, 2024 14:44
Concatenates files inside a folder to create RAG friendly data from it. This can be uploaded to ChatGPT to give it context
#!/bin/bash
# Function to display usage
usage() {
echo "Usage: $0 <folder> [--files <extensions_file>] [--output <output_file>]"
exit 1
}
# Check for at least one argument
if [ "$#" -lt 1 ]; then