This topic is locked

Version 11.3 beta

5/8/2026 12:56:29
PHPRunner General questions
Sergey Kornilov admin

Version 11.3 beta is here:
https://xlinesoft.com/blog/2025/12/24/version-11-3/

You can see the video that explains how to use new features at
https://www.youtube.com/watch?v=5fX1vV7Z_nw

img alt

C
Chris Whitehead 5/8/2026

I think the AI include is great, I would like to see DeepSeek as one of the options if possible, it's cost effective and uses the same API code as ChatGpt.

Sergey Kornilov admin 5/8/2026

@Chris,

thank you, we'll check DeepSeek as well.

C
cristi 5/10/2026

It works great so far and Intellisense!!! - finally!
One feature that maybe could find place in the final version: posibility to copy/import custom buttons between same project tables and being able to modify the code of the copied button without changes to the original button. Now if I copy a button in another table and modify the code in tripart events the changes are also automatically applied in the original button code because the application consider this "reuse" and I quote from the manual: "Note: The already added custom buttons appear in the Insert -> Custom button window, so that you can re-use them. Any changes in the button code are made in the copies as well.."

G
GuilleSaa 5/12/2026

Hi.
Is the video available?

Sergey Kornilov admin 5/13/2026

Yes, we had to reupload it and the link has changed. I've updated the link in the original post.

E
Eric Chan 5/13/2026

Can you also add OpenRouter as one of the AI model provider options?

Tandy 5/15/2026

Question. What about those that have there own AI from Ollama on there PC? I use VS Code and have Ollama installed on my own PC and have different kinds of models downloaded on my PC.

J
jacques 5/19/2026

The AI ​​implementation is incredibly good. I’ve played around with it and it works excellently. 2 questions:

Question 1:
When you insert the AI ​​code, it isn't formatted as neatly in PHPRunner as when you type code into PHPRunner yourself. Is that a (future) option?

Question 2:
There is currently a limit on the number of questions you can ask Cody. I already have a paid version of Copilot. It would be a nice addition if you could choose that as well.

Excellent again.

Regards,
Jacques

Sergey Kornilov admin 5/20/2026

Jacques,

thank you for the feedbnack!

Very soon we will have 'copy code' option available and we'll make sure that it preserves the formatting.

Also we are looking into adding Copilot as AI provider.

C
Chris Whitehead 5/23/2026

It's clear that there's a multitude of LLMs and we all appear to be using different ones, I can only see this number increasing.

While it's not feasible for all LLMs/Models to be added to PHPRunner, there might be some common ground with some of the API calls. for example, I'm using Claude Code with DeepSeek, all that was required was to change the endpoint and update the model names.

Could it be possible to allow the user to update the endpoint and model names of those currently listed?

Sergey Kornilov admin 5/23/2026
Unfortunately there more involvEd into that thn just updating an endpoint. As it evolves, all notable providers and models will be supported. In our experience it is the quality of the prompt that matters the most.
C
Chris Whitehead 5/24/2026

@Sergey I completely understand that it's not just as simple as changing the endpoint. I also agree that the prompt does make a big difference as you're effectively explaining your requirements to a super intelligent child.

It was just an observation that there appears to be some common ground in the LLM APIs if an application/agent written specifically for one LLM API can be quickly altered to work with another.

In using Deepseek LLM with the ClaudeCode Agent, it was as simple as updating these enviromental variables. This is what led me to wonder if I could do the same in PHPRunner.

$env:ANTHROPIC_BASE_URL="https://api.deepseek.com/anthropic"
$env:ANTHROPIC_AUTH_TOKEN="<your DeepSeek API Key>"
$env:ANTHROPIC_MODEL="deepseek-v4-pro[1m]"
$env:ANTHROPIC_DEFAULT_OPUS_MODEL="deepseek-v4-pro[1m]"
$env:ANTHROPIC_DEFAULT_SONNET_MODEL="deepseek-v4-pro[1m]"
$env:ANTHROPIC_DEFAULT_HAIKU_MODEL="deepseek-v4-flash"
$env:CLAUDE_CODE_SUBAGENT_MODEL="deepseek-v4-flash"
$env:CLAUDE_CODE_EFFORT_LEVEL="max"