René's URL Explorer Experiment


Title: ReadMe is out of date · Issue #166 · dashscope/dashscope-sdk-java · GitHub

Open Graph Title: ReadMe is out of date · Issue #166 · dashscope/dashscope-sdk-java

X Title: ReadMe is out of date · Issue #166 · dashscope/dashscope-sdk-java

Description: Conversation is deprecated , and QWenConversationParam is removed. Please update your doc as follows ## QuickStart ### Conversation You can create a conversation client simply by: ```java // Use http as the network protocol. Generation g...

Open Graph Description: Conversation is deprecated , and QWenConversationParam is removed. Please update your doc as follows ## QuickStart ### Conversation You can create a conversation client simply by: ```java // Use ht...

X Description: Conversation is deprecated , and QWenConversationParam is removed. Please update your doc as follows ## QuickStart ### Conversation You can create a conversation client simply by: ```java // Use ht...

Opengraph URL: https://github.com/dashscope/dashscope-sdk-java/issues/166

X: @github

direct link

Domain: github.com


Hey, it has json ld scripts:
{"@context":"https://schema.org","@type":"DiscussionForumPosting","headline":"ReadMe is out of date","articleBody":"`Conversation` is deprecated , and `QWenConversationParam` is removed. Please update your doc as follows\n\n```\n## QuickStart\n\n### Conversation\n\nYou can create a conversation client simply by:\n\n```java\n// Use http as the network protocol.\nGeneration generation = new Generation();\n```\n\nThis interface also accept a protocol argument:\n\n```java\nimport com.alibaba.dashscope.common.Protocol;\nGeneration generation = new Generation(Protocol.HTTP.getValue());\nGeneration generation = new Generation(Protocol.WEBSOCKET.getValue());\n```\n\nThe generation interface supports both stream and non-stream queries. These queries all accept `GenerationParam`  as input, and returns `GenerationResult` as output . Each model has a unique input structure and output structure which derives from the two data classes mentioned above. Please use these sub classes when you are using the coordinating model. \n\nHere shows the usages of each method, with the examples of `qwen-turbo` model.\n\n#### Support stream and non-stream mode, accept output from callback\n\n```java\nimport com.alibaba.dashscope.aigc.generation.Generation;\nimport com.alibaba.dashscope.aigc.generation.GenerationParam;\nimport com.alibaba.dashscope.aigc.generation.GenerationResult;\nimport com.alibaba.dashscope.common.Message;\nimport com.alibaba.dashscope.common.ResultCallback;\nimport com.alibaba.dashscope.common.Role;\nimport com.alibaba.dashscope.exception.ApiException;\nimport com.alibaba.dashscope.exception.InputRequiredException;\nimport com.alibaba.dashscope.exception.NoApiKeyException;\nimport com.alibaba.dashscope.utils.JsonUtils;\nimport java.util.Arrays;\n\npublic class Main {\n\n  public static void main(String[] args) {\n      Generation generation = new Generation();\n      GenerationParam param = GenerationParam.builder()\n          .apiKey(System.getenv(\"DASHSCOPE_API_KEY\"))\n          .model(Generation.Models.QWEN_TURBO)\n          .messages(Arrays.asList(\n              Message.builder()\n                  .role(Role.USER.getValue())\n                  .content(\"Hello, how are you?\").build()\n          )).build();\n\n      class ReactCallback extends ResultCallback\u003cGenerationResult\u003e {\n\n        @Override\n        public void onEvent(GenerationResult message) {\n          System.out.println( JsonUtils.toJson(message));\n          // TODO deal with result\n        }\n\n        public void onComplete() {\n          // TODO all messages received\n        }\n\n        public void onError(Exception e) {\n          ApiException apiException = (ApiException) e;\n          // TODO deal with exception\n        }\n      }\n\n      generation.call(param, new ReactCallback());\n    }\n}\n\n```\n\nThe Exception instance in the conversation scenario is a `ApiException` instance. This Exception may contain two parts:\n\n- A `Status` instance. This instance carries a status_code(The http error code), a code(server error code), a message(server error message), the input message id, and the usage information.\n- If an exception occurs, the `ApiException` instance may only carry an `Exception` stack trace, you can deal with it as you usually do.\n\n#### Stream only, accept by react io\n\n```java\nimport com.alibaba.dashscope.aigc.generation.Generation;\nimport com.alibaba.dashscope.aigc.generation.GenerationParam;\nimport com.alibaba.dashscope.aigc.generation.GenerationResult;\nimport com.alibaba.dashscope.common.Message;\nimport com.alibaba.dashscope.common.Role;\nimport com.alibaba.dashscope.exception.ApiException;\nimport com.alibaba.dashscope.exception.InputRequiredException;\nimport com.alibaba.dashscope.exception.NoApiKeyException;\nimport com.alibaba.dashscope.utils.JsonUtils;\nimport io.reactivex.Flowable;\nimport java.util.Arrays;\n\npublic class Main {\n\n  public static void main(String[] args) {\n    Generation generation = new Generation();\n\n    Message systemMsg = Message.builder()\n        .role(Role.SYSTEM.getValue())\n        .content(\"You are a helpful assistant.\")\n        .build();\n    Message userMsg = Message.builder()\n        .role(Role.USER.getValue())\n        .content(\"你是谁?\")\n        .build();\n    GenerationParam param = GenerationParam.builder()\n        .apiKey(System.getenv(\"DASHSCOPE_API_KEY\"))\n        .model(Generation.Models.QWEN_TURBO)\n        .messages(Arrays.asList(systemMsg, userMsg))\n        .resultFormat(GenerationParam.ResultFormat.MESSAGE)\n        .build();\n\n    try {\n      Flowable\u003cGenerationResult\u003e result = generation.streamCall( param);\n      result.blockingForEach(msg -\u003e System.out.println(JsonUtils.toJson(msg)));\n\n    } catch (ApiException | NoApiKeyException | InputRequiredException e) {\n      System.err.println(\"An error occurred while calling the generation service: \" + e.getMessage());\n    }\n  }\n}\n```\n\nThe `streamCall` method accepts a `GenerationParam` , and returns a `Flowable`, which you can get the streaming result by `blockingForEach`, and catch the exception by the try-catch block.\n\n#### Non-stream only\n\n```java\nimport com.alibaba.dashscope.aigc.generation.Generation;\nimport com.alibaba.dashscope.aigc.generation.GenerationParam;\nimport com.alibaba.dashscope.aigc.generation.GenerationResult;\nimport com.alibaba.dashscope.common.Message;\nimport com.alibaba.dashscope.common.Role;\nimport com.alibaba.dashscope.exception.ApiException;\nimport com.alibaba.dashscope.exception.InputRequiredException;\nimport com.alibaba.dashscope.exception.NoApiKeyException;\nimport com.alibaba.dashscope.utils.JsonUtils;\nimport java.util.Arrays;\n\npublic class Main {\n\n  public static void main(String[] args) {\n    Generation generation = new Generation();\n\n    Message systemMsg = Message.builder()\n        .role(Role.SYSTEM.getValue())\n        .content(\"You are a helpful assistant.\")\n        .build();\n    Message userMsg = Message.builder()\n        .role(Role.USER.getValue())\n        .content(\"你是谁?\")\n        .build();\n    GenerationParam param = GenerationParam.builder()\n        .apiKey(System.getenv(\"DASHSCOPE_API_KEY\"))\n        .model(Generation.Models.QWEN_TURBO)\n        .messages(Arrays.asList(systemMsg, userMsg))\n        .resultFormat(GenerationParam.ResultFormat.MESSAGE)\n        .build();\n\n    try {\n      GenerationResult result = generation.call( param);\n      System.out.println(JsonUtils.toJson(result));\n    } catch (ApiException | NoApiKeyException | InputRequiredException e) {\n      System.err.println(\"An error occurred while calling the generation service: \" + e.getMessage());\n    }\n  }\n}\n```\n\nThe `call` method accepts a `GenerationParam`, and returns a `GenerationResult`, you can also catch the exception with a try-catch block.\n","author":{"url":"https://github.com/XiaotianZha","@type":"Person","name":"XiaotianZha"},"datePublished":"2025-12-18T02:44:34.000Z","interactionStatistic":{"@type":"InteractionCounter","interactionType":"https://schema.org/CommentAction","userInteractionCount":1},"url":"https://github.com/166/dashscope-sdk-java/issues/166"}

route-pattern/_view_fragments/issues/show/:user_id/:repository/:id/issue_layout(.:format)
route-controllervoltron_issues_fragments
route-actionissue_layout
fetch-noncev2:ad0bfcfd-f176-f592-9949-0c5d83828707
current-catalog-service-hash81bb79d38c15960b92d99bca9288a9108c7a47b18f2423d0f6438c5b7bcd2114
request-id95AE:D5FB4:16F057D:209F94C:6A61D63D
html-safe-nonceefd87fd06eaa3ef384c8c07dca78b4a39871fbd0ccb8ca844b564053ede92424
visitor-payloadeyJyZWZlcnJlciI6IiIsInJlcXVlc3RfaWQiOiI5NUFFOkQ1RkI0OjE2RjA1N0Q6MjA5Rjk0Qzo2QTYxRDYzRCIsInZpc2l0b3JfaWQiOiI2OTIwNTE1NDM2MTUwOTA0MzgxIiwicmVnaW9uX2VkZ2UiOiJpYWQiLCJyZWdpb25fcmVuZGVyIjoiaWFkIn0=
visitor-hmacf953e679958204e5672a91fa3d8263ff7eb969721d227d29b78f8d2bf5b835ef
hovercard-subject-tagissue:3741196861
github-keyboard-shortcutsrepository,issues,copilot
google-site-verificationApib7-x98H0j5cPqHWwSMm6dNU4GmODRoqxLiDzdx9I
octolytics-urlhttps://collector.github.com/github/collect
analytics-location///voltron/issues_fragments/issue_layout
fb:app_id1401488693436528
apple-itunes-appapp-id=1477376905, app-argument=https://github.com/_view_fragments/issues/show/dashscope/dashscope-sdk-java/166/issue_layout
twitter:imagehttps://opengraph.githubassets.com/dad7b92cabcae082edbc7085af26a9761bb50d9624e90540b0f928ea84af5846/dashscope/dashscope-sdk-java/issues/166
twitter:cardsummary_large_image
og:imagehttps://opengraph.githubassets.com/dad7b92cabcae082edbc7085af26a9761bb50d9624e90540b0f928ea84af5846/dashscope/dashscope-sdk-java/issues/166
og:image:altConversation is deprecated , and QWenConversationParam is removed. Please update your doc as follows ## QuickStart ### Conversation You can create a conversation client simply by: ```java // Use ht...
og:image:width1200
og:image:height600
og:site_nameGitHub
og:typeobject
og:author:usernameXiaotianZha
hostnamegithub.com
expected-hostnamegithub.com
Noneb2de8c74e5e61e893155ba46ee41bc66170c1644cb795adefa8386d490f7781c
turbo-cache-controlno-preview
go-importgithub.com/dashscope/dashscope-sdk-java git https://github.com/dashscope/dashscope-sdk-java.git
octolytics-dimension-user_id127009744
octolytics-dimension-user_logindashscope
octolytics-dimension-repository_id882929467
octolytics-dimension-repository_nwodashscope/dashscope-sdk-java
octolytics-dimension-repository_publictrue
octolytics-dimension-repository_is_forkfalse
octolytics-dimension-repository_network_root_id882929467
octolytics-dimension-repository_network_root_nwodashscope/dashscope-sdk-java
turbo-body-classeslogged-out env-production page-responsive
disable-turbofalse
browser-stats-urlhttps://api.github.com/_private/browser/stats
browser-errors-urlhttps://api.github.com/_private/browser/errors
released1866027ded575df8a15c731dd8b9986c9483ceb
ui-targetfull
theme-color#1e2327
color-schemelight dark

Links:

Skip to contenthttps://github.com/dashscope/dashscope-sdk-java/issues/166#start-of-content
https://github.com/
Sign in https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fdashscope%2Fdashscope-sdk-java%2Fissues%2F166
GitHub CopilotWrite better code with AIhttps://github.com/features/copilot
GitHub Copilot appDirect agents from issue to mergehttps://github.com/features/ai/github-app
MCP RegistryNewIntegrate external toolshttps://github.com/mcp
ActionsAutomate any workflowhttps://github.com/features/actions
CodespacesInstant dev environmentshttps://github.com/features/codespaces
IssuesPlan and track workhttps://github.com/features/issues
Code ReviewManage code changeshttps://github.com/features/code-review
Code QualityEnforce quality at mergehttps://github.com/features/code-quality
GitHub Advanced SecurityFind and fix vulnerabilitieshttps://github.com/security/advanced-security
Code securitySecure your code as you buildhttps://github.com/security/advanced-security/code-security
Secret protectionStop leaks before they starthttps://github.com/security/advanced-security/secret-protection
Why GitHubhttps://github.com/why-github
Documentationhttps://docs.github.com
Bloghttps://github.blog
Changeloghttps://github.blog/changelog
Marketplacehttps://github.com/marketplace
View all featureshttps://github.com/features
Enterpriseshttps://github.com/enterprise
Small and medium teamshttps://github.com/team
Startupshttps://github.com/enterprise/startups
Nonprofitshttps://github.com/solutions/industry/nonprofits
App Modernizationhttps://github.com/solutions/use-case/app-modernization
DevSecOpshttps://github.com/solutions/use-case/devsecops
DevOpshttps://github.com/solutions/use-case/devops
CI/CDhttps://github.com/solutions/use-case/ci-cd
View all use caseshttps://github.com/solutions/use-case
Healthcarehttps://github.com/solutions/industry/healthcare
Financial serviceshttps://github.com/solutions/industry/financial-services
Manufacturinghttps://github.com/solutions/industry/manufacturing
Governmenthttps://github.com/solutions/industry/government
View all industrieshttps://github.com/solutions/industry
View all solutionshttps://github.com/solutions
AIhttps://github.com/resources/articles?topic=ai
Software Developmenthttps://github.com/resources/articles?topic=software-development
DevOpshttps://github.com/resources/articles?topic=devops
Securityhttps://github.com/resources/articles?topic=security
View all topicshttps://github.com/resources/articles
Customer storieshttps://github.com/customer-stories
Events & webinarshttps://github.com/resources/events
Ebooks & reportshttps://github.com/resources/whitepapers
Business insightshttps://github.com/solutions/executive-insights
GitHub Skillshttps://skills.github.com
Documentationhttps://docs.github.com
Customer supporthttps://support.github.com
Community forumhttps://github.com/orgs/community/discussions
Trust centerhttps://github.com/trust-center
Partnershttps://github.com/partners
View all resourceshttps://github.com/resources
GitHub SponsorsFund open source developershttps://github.com/open-source/sponsors
Security Labhttps://securitylab.github.com
Maintainer Communityhttps://maintainers.github.com
Acceleratorhttps://github.com/open-source/accelerator
GitHub Starshttps://stars.github.com
Archive Programhttps://archiveprogram.github.com
Topicshttps://github.com/topics
Trendinghttps://github.com/trending
Collectionshttps://github.com/collections
Enterprise platformAI-powered developer platformhttps://github.com/enterprise
GitHub Advanced SecurityEnterprise-grade security featureshttps://github.com/security/advanced-security
Copilot for BusinessEnterprise-grade AI featureshttps://github.com/features/copilot/copilot-business
Premium SupportEnterprise-grade 24/7 supporthttps://github.com/enterprise/premium-support
Pricinghttps://github.com/pricing
Search syntax tipshttps://docs.github.com/search-github/github-code-search/understanding-github-code-search-syntax
documentationhttps://docs.github.com/search-github/github-code-search/understanding-github-code-search-syntax
Sign in https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fdashscope%2Fdashscope-sdk-java%2Fissues%2F166
Sign up https://github.com/signup?ref_cta=Sign+up&ref_loc=header+logged+out&ref_page=%2F%3Cuser-name%3E%2F%3Crepo-name%3E%2Fvoltron%2Fissues_fragments%2Fissue_layout&source=header-repo&source_repo=dashscope%2Fdashscope-sdk-java
Reloadhttps://github.com/dashscope/dashscope-sdk-java/issues/166
Reloadhttps://github.com/dashscope/dashscope-sdk-java/issues/166
Reloadhttps://github.com/dashscope/dashscope-sdk-java/issues/166
Please reload this pagehttps://github.com/dashscope/dashscope-sdk-java/issues/166
dashscope https://github.com/dashscope
dashscope-sdk-javahttps://github.com/dashscope/dashscope-sdk-java
Notifications https://github.com/login?return_to=%2Fdashscope%2Fdashscope-sdk-java
Fork 24 https://github.com/login?return_to=%2Fdashscope%2Fdashscope-sdk-java
Star 76 https://github.com/login?return_to=%2Fdashscope%2Fdashscope-sdk-java
Code https://github.com/dashscope/dashscope-sdk-java
Issues 1 https://github.com/dashscope/dashscope-sdk-java/issues
Pull requests 2 https://github.com/dashscope/dashscope-sdk-java/pulls
Actions https://github.com/dashscope/dashscope-sdk-java/actions
Projects https://github.com/dashscope/dashscope-sdk-java/projects
Security and quality 0 https://github.com/dashscope/dashscope-sdk-java/security
Insights https://github.com/dashscope/dashscope-sdk-java/pulse
Code https://github.com/dashscope/dashscope-sdk-java
Issues https://github.com/dashscope/dashscope-sdk-java/issues
Pull requests https://github.com/dashscope/dashscope-sdk-java/pulls
Actions https://github.com/dashscope/dashscope-sdk-java/actions
Projects https://github.com/dashscope/dashscope-sdk-java/projects
Security and quality https://github.com/dashscope/dashscope-sdk-java/security
Insights https://github.com/dashscope/dashscope-sdk-java/pulse
ReadMe is out of datehttps://github.com/dashscope/dashscope-sdk-java/issues/166#top
https://github.com/XiaotianZha
XiaotianZhahttps://github.com/XiaotianZha
on Dec 18, 2025https://github.com/dashscope/dashscope-sdk-java/issues/166#issue-3741196861
https://github.com
Termshttps://docs.github.com/site-policy/github-terms/github-terms-of-service
Privacyhttps://docs.github.com/site-policy/privacy-policies/github-privacy-statement
Securityhttps://github.com/security
Statushttps://www.githubstatus.com/
Communityhttps://github.community/
Docshttps://docs.github.com/
Contacthttps://support.github.com?tags=dotcom-footer

Viewport: width=device-width


URLs of crawlers that visited me.