8000 doc: update sample and README · cnblogs/dashscope-sdk@2bae32e · GitHub
[go: up one dir, main page]

Skip to content

feat: support reasoning switch for qwen3 models #186

feat: support reasoning switch for qwen3 models

feat: support reasoning switch for qwen3 models #186

Workflow file for this run

name: CI
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
test-net6:
runs-on: ubuntu-latest
container: mcr.microsoft.com/dotnet/sdk:6.0
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Build
run: dotnet build src/Cnblogs.DashScope.AspNetCore -c Release
- name: Test
run: dotnet test test/Cnblogs.DashScope.Sdk.UnitTests -c Release
test-net8:
runs-on: ubuntu-latest
container: mcr.microsoft.com/dotnet/sdk:8.0
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Build
run: dotnet build src/Cnblogs.DashScope.AI -c Release
- name: Test
run: dotnet test test/Cnblogs.DashScope.AI.UnitTests -c Release
0