kcl-lang / kcl

KCL Programming Language (CNCF Sandbox Project). https://kcl-lang.io
https://kcl-lang.io
Apache License 2.0
1.64k stars 118 forks source link

[Enhancement] Add Code and Documentation AI Assistants for KCL #461

Closed Peefy closed 1 year ago

Peefy commented 1 year ago

Enhancement

Add Code and Documentation AI Assistants for KCL

Why

Goals

Design

image

API

Ping

Chat

POST /v1/chat/completions
req body: { message: Prompt }
res body: { completions: Completion[]}
export interface Prompt {
  input: string;
  model: string;
}

export interface Completion {
    prompt: string;
    competition: string;
}

KclService

https://kcl-lang.io/docs/reference/xlang-api/rest-api

CLI

kcl-chat "How to install kcl"

IDE Integration

Impl

Next.js + VSCode Plugin

Reference

He1pa commented 1 year ago

Bito: https://plugins.jetbrains.com/plugin/18289-bito--gpt-4--chatgpt-to-write-code-explain-code-create-tests