@kamrankhan027/probe-ai 1.1.0 → 1.1.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/dist/index.js +15 -8
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -4709,34 +4709,34 @@ async function resolveProviderConfig() {
4709
4709
  message: "Choose AI Engine Provider:",
4710
4710
  choices: [
4711
4711
  {
4712
- name: `${chalk7.bold.cyan("\u{1F537} Google Gemini")} ${chalk7.dim("(Gemini 2.5 Flash / 3.6 Flash - Free & Fast)")}`,
4712
+ name: `${chalk7.bold.cyan("\u{1F537} Google Gemini")} ${chalk7.dim("(Gemini 3.6 / 3.5 / 2.5 Flash - Free & Fast)")}`,
4713
4713
  value: "gemini"
4714
4714
  },
4715
4715
  {
4716
- name: `${chalk7.bold.green("\u{1F7E2} OpenAI")} ${chalk7.dim("(GPT-5.6 / GPT-4o / GPT-4o-mini)")}`,
4716
+ name: `${chalk7.bold.green("\u{1F7E2} OpenAI")} ${chalk7.dim("(GPT-5.6 Sol/Terra, GPT-4o, o3-mini, GPT-OSS)")}`,
4717
4717
  value: "openai"
4718
4718
  },
4719
4719
  {
4720
- name: `${chalk7.bold.hex("#A855F7")("\u{1F7E3} Anthropic Claude")} ${chalk7.dim("(Sonnet 5 / Claude 3.5 Sonnet)")}`,
4720
+ name: `${chalk7.bold.hex("#A855F7")("\u{1F7E3} Anthropic Claude")} ${chalk7.dim("(Sonnet 5, Opus 5, Claude 3.5 Sonnet)")}`,
4721
4721
  value: "anthropic"
4722
4722
  },
4723
4723
  {
4724
- name: `${chalk7.bold.yellow("\u26A1 Groq")} ${chalk7.dim("(Llama 3.3 70B - Free tier & Ultra-Fast)")}`,
4724
+ name: `${chalk7.bold.yellow("\u26A1 Groq")} ${chalk7.dim("(Llama 3.3 70B, GPT-OSS 120B, Qwen 3.6)")}`,
4725
4725
  value: "groq"
4726
4726
  },
4727
4727
  {
4728
- name: `${chalk7.bold.hex("#3B82F6")("\u{1F310} OpenRouter")} ${chalk7.dim("(DeepSeek / Qwen 2.5 - Free tiers)")}`,
4728
+ name: `${chalk7.bold.hex("#3B82F6")("\u{1F310} OpenRouter")} ${chalk7.dim("(DeepSeek V4/R1, Qwen 3.5/2.5 Coder, Mistral)")}`,
4729
4729
  value: "openrouter"
4730
4730
  },
4731
4731
  {
4732
- name: `${chalk7.bold.white("\u{1F999} Ollama")} ${chalk7.dim("(Local / 100% Offline - No API key needed)")}`,
4732
+ name: `${chalk7.bold.white("\u{1F999} Ollama")} ${chalk7.dim("(Local / Offline: DeepSeek-R1, Qwen Coder, Gemma 4)")}`,
4733
4733
  value: "ollama"
4734
4734
  }
4735
4735
  ]
4736
4736
  });
4737
4737
  if (provider === "ollama") {
4738
4738
  const customModel2 = await input({
4739
- message: "Enter Ollama model name (default: qwen2.5-coder:7b):",
4739
+ message: "Enter Ollama model (e.g. qwen2.5-coder:7b, deepseek-r1, llama3.3):",
4740
4740
  default: "qwen2.5-coder:7b"
4741
4741
  });
4742
4742
  return { provider: "ollama", modelName: customModel2 };
@@ -4756,8 +4756,15 @@ async function resolveProviderConfig() {
4756
4756
  console.log(chalk7.red("\nError: An API key is required to proceed. Exiting...\n"));
4757
4757
  process.exit(1);
4758
4758
  }
4759
+ const modelHints = {
4760
+ gemini: "gemini-2.5-flash (or gemini-3.6-flash, gemini-2.5-pro)",
4761
+ openai: "gpt-4o (or gpt-5.6, gpt-4o-mini, o3-mini)",
4762
+ anthropic: "claude-3-5-sonnet-latest (or claude-sonnet-5, claude-opus-5)",
4763
+ groq: "llama-3.3-70b-versatile (or qwen-2.5-32b)",
4764
+ openrouter: "qwen/qwen-2.5-coder-32b-instruct:free (or deepseek/deepseek-r1:free)"
4765
+ };
4759
4766
  const customModel = await input({
4760
- message: "Model ID (press Enter to use provider default):",
4767
+ message: `Model ID [default: ${modelHints[provider]}]:`,
4761
4768
  default: ""
4762
4769
  });
4763
4770
  return {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kamrankhan027/probe-ai",
3
- "version": "1.1.0",
3
+ "version": "1.1.1",
4
4
  "description": "Autonomous API Schema & Reliability Inspector CLI. Probes OpenAPI specs, generates test suites, executes real-time HTTP calls, and exports Postman collections.",
5
5
  "main": "./dist/index.js",
6
6
  "types": "./dist/index.d.ts",