Results 13 issues of sigoden

```rust use jsonschema::JSONSchema; use serde_json::json; fn main() { let schema = json!({ "$defs": { "root": { "oneOf": [ { "type": "object", "properties": { "a": { "type": "number" } } },...

很多项目自带OpenApi/Swagger文档。 OpenAPI中包含了接口的路由信息,并定义了接口请求和响应的数据结构。 这些其实可以被测试项目复用的。 是否可以通过@openapi注解复用 OpenApi 中的信息? ``` { // 引入openapi文档 @openapi("api") // 支持多个openapi文档 @openapi("apiManage") // 复用addPet路由信息 addPet1: { @openapi("api#addPet") req: { body: { } }, res: { // 使用JsonSchema校验响应数据 body:...

enhancement

```rs use std::collections::HashMap; pub struct Graph(HashMap); impl Graph { pub fn new() -> Self { Graph(HashMap::new()) } pub fn add_edge(&mut self, u: i32, v: i32) { self.0. } } ```

E-hard
S-actionable
A-parser
Broken Window
C-bug

```toml [target.'cfg(target_arch = "wasm32")'.dependencies] reqwest = { version ="0.11", default-features = false, features = ["rustls-tls", "json"] } tokio = { version = "1.0", default-features = false, features = ["net", "time"]...

enhancement

### Please complete the following tasks - [X] I have searched the [discussions](https://github.com/clap-rs/clap/discussions) - [X] I have searched the [open](https://github.com/clap-rs/clap/issues) and [rejected](https://github.com/clap-rs/clap/issues?q=is%3Aissue+label%3AS-wont-fix+is%3Aclosed) issues ### Clap Version master ### Describe your...

C-enhancement
A-help
S-blocked

## Background All mainstream shells allow users to control the order of completions. * Shells that have the option to control order - bash: `complete -F _mycmd_completer -o nosort mycmd`...

**Platform** Ubuntu 22.04 **Terminal software** gnome-terminal Unexpected spaces between the end of a pasted multiline string and reply. The buffer also seems to be corrupted. ## Steps to reproduce 1....

bug

## Why use LLM function calling? LLM function calling is a powerful technique that allows Large Language Models (LLMs) to interact with external tools and data sources. This significantly enhances...