René's URL Explorer Experiment


Title: Bug: Set ToolCallBehavior.allowAllKernelFunctions(false) doesn't work for getStreamingChatMessageContentsAsync · Issue #279 · microsoft/semantic-kernel-java · GitHub

Open Graph Title: Bug: Set ToolCallBehavior.allowAllKernelFunctions(false) doesn't work for getStreamingChatMessageContentsAsync · Issue #279 · microsoft/semantic-kernel-java

X Title: Bug: Set ToolCallBehavior.allowAllKernelFunctions(false) doesn't work for getStreamingChatMessageContentsAsync · Issue #279 · microsoft/semantic-kernel-java

Description: Describe the bug I try to invoke toolcall myself in a streaming chat. I have learned that how to invoke a toolcall in an non-streaming chat. like Kernel kernel = Kernel.builder().withAIService(ChatCompletionService.class, chatCompletionS...

Open Graph Description: Describe the bug I try to invoke toolcall myself in a streaming chat. I have learned that how to invoke a toolcall in an non-streaming chat. like Kernel kernel = Kernel.builder().withAIService(Chat...

X Description: Describe the bug I try to invoke toolcall myself in a streaming chat. I have learned that how to invoke a toolcall in an non-streaming chat. like Kernel kernel = Kernel.builder().withAIService(Chat...

Opengraph URL: https://github.com/microsoft/semantic-kernel-java/issues/279

X: @github

direct link

Domain: github.com


Hey, it has json ld scripts:
{"@context":"https://schema.org","@type":"DiscussionForumPosting","headline":"Bug: Set ToolCallBehavior.allowAllKernelFunctions(false) doesn't work for getStreamingChatMessageContentsAsync","articleBody":"**Describe the bug**\nI try to invoke toolcall myself in a streaming chat.\nI have learned that how to invoke a toolcall in an non-streaming chat. like \n``` java\n        Kernel kernel = Kernel.builder().withAIService(ChatCompletionService.class, chatCompletionService)\n                .withPlugin(KernelPluginFactory.createFromObject(this, \"time\"))\n                .build();\n\n        chatCompletionService\n                .getChatMessageContentsAsync(\"what time is it now?\", kernel, InvocationContext.builder()\n                        .withToolCallBehavior(ToolCallBehavior.allowAllKernelFunctions(false))\n                        .build())\n                .block()\n                .stream().filter(it-\u003eit instanceof OpenAIChatMessageContent\u003c?\u003e)\n                .map(it-\u003e((OpenAIChatMessageContent)it))\n                .forEach(it-\u003e{\n                    System.out.println(it.getToolCall().size());\n                });\n```\n![Image](https://github.com/user-attachments/assets/acf9b0d0-182a-4b6f-84d4-dd32406f1074)\n\nAs you can see, I can get the toolCall value;\n\n\nbut when I change to an streaming chat, like \n``` java\n        Kernel kernel = Kernel.builder().withAIService(ChatCompletionService.class, chatCompletionService)\n                .withPlugin(KernelPluginFactory.createFromObject(this, \"time\"))\n                .build();\n\n        chatCompletionService\n                .getStreamingChatMessageContentsAsync(\"what time is it now?\", kernel, InvocationContext.builder()\n                        .withToolCallBehavior(ToolCallBehavior.allowAllKernelFunctions(false))\n                        .build())\n                .filter(it-\u003eit instanceof OpenAIStreamingChatMessageContent\u003c?\u003e)\n                .map(it-\u003e(OpenAIStreamingChatMessageContent)it)\n                .doOnNext(it-\u003e{\n                    System.out.println(it.getToolCall().size());\n                }).subscribe();\n```\n![Image](https://github.com/user-attachments/assets/d4468935-8cc7-4356-9742-730cfb4b9c0c)\nthe toolCall will always be an empty array.\n","author":{"url":"https://github.com/thomaspeng90s","@type":"Person","name":"thomaspeng90s"},"datePublished":"2024-12-09T08:09:49.000Z","interactionStatistic":{"@type":"InteractionCounter","interactionType":"https://schema.org/CommentAction","userInteractionCount":1},"url":"https://github.com/279/semantic-kernel-java/issues/279"}

route-pattern/_view_fragments/issues/show/:user_id/:repository/:id/issue_layout(.:format)
route-controllervoltron_issues_fragments
route-actionissue_layout
fetch-noncev2:6da8f56e-83a9-3ae2-cbf2-0cd6dd7a6b94
current-catalog-service-hash81bb79d38c15960b92d99bca9288a9108c7a47b18f2423d0f6438c5b7bcd2114
request-id95B2:36F6BD:104CF4:17C1F7:6A4D0508
html-safe-nonce7c833ec22aecafa50b14072b93752077afb6a22e7926f6efe684bd005401ba54
visitor-payloadeyJyZWZlcnJlciI6IiIsInJlcXVlc3RfaWQiOiI5NUIyOjM2RjZCRDoxMDRDRjQ6MTdDMUY3OjZBNEQwNTA4IiwidmlzaXRvcl9pZCI6IjY5ODAzNjIxODQ3NjE4Njk1NzYiLCJyZWdpb25fZWRnZSI6ImlhZCIsInJlZ2lvbl9yZW5kZXIiOiJpYWQifQ==
visitor-hmac3675786b38ce4ae61c1846d04b59e168b257350362f33d241ba63709636cecf6
hovercard-subject-tagissue:2726308808
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/microsoft/semantic-kernel-java/279/issue_layout
twitter:imagehttps://opengraph.githubassets.com/9411e102275ecb35c17bca6012ee5c90151c9dcbf2b548e410dddf2a4d74641f/microsoft/semantic-kernel-java/issues/279
twitter:cardsummary_large_image
og:imagehttps://opengraph.githubassets.com/9411e102275ecb35c17bca6012ee5c90151c9dcbf2b548e410dddf2a4d74641f/microsoft/semantic-kernel-java/issues/279
og:image:altDescribe the bug I try to invoke toolcall myself in a streaming chat. I have learned that how to invoke a toolcall in an non-streaming chat. like Kernel kernel = Kernel.builder().withAIService(Chat...
og:image:width1200
og:image:height600
og:site_nameGitHub
og:typeobject
og:author:usernamethomaspeng90s
hostnamegithub.com
expected-hostnamegithub.com
None31e4db13a9e20081f2fac78f441659a6576e582bbb15e153f9c7fb6473aa29f5
turbo-cache-controlno-preview
go-importgithub.com/microsoft/semantic-kernel-java git https://github.com/microsoft/semantic-kernel-java.git
octolytics-dimension-user_id6154722
octolytics-dimension-user_loginmicrosoft
octolytics-dimension-repository_id814249293
octolytics-dimension-repository_nwomicrosoft/semantic-kernel-java
octolytics-dimension-repository_publictrue
octolytics-dimension-repository_is_forkfalse
octolytics-dimension-repository_network_root_id814249293
octolytics-dimension-repository_network_root_nwomicrosoft/semantic-kernel-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
releasefb70bd3c4b2bec429781b65419e912c66e2d5581
ui-targetfull
theme-color#1e2327
color-schemelight dark

Links:

Skip to contenthttps://github.com/microsoft/semantic-kernel-java/issues/279#start-of-content
https://github.com/
Sign in https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fmicrosoft%2Fsemantic-kernel-java%2Fissues%2F279
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
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/sponsors
Security Labhttps://securitylab.github.com
Maintainer Communityhttps://maintainers.github.com
Acceleratorhttps://github.com/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/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%2Fmicrosoft%2Fsemantic-kernel-java%2Fissues%2F279
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=microsoft%2Fsemantic-kernel-java
Reloadhttps://github.com/microsoft/semantic-kernel-java/issues/279
Reloadhttps://github.com/microsoft/semantic-kernel-java/issues/279
Reloadhttps://github.com/microsoft/semantic-kernel-java/issues/279
Please reload this pagehttps://github.com/microsoft/semantic-kernel-java/issues/279
microsoft https://github.com/microsoft
semantic-kernel-javahttps://github.com/microsoft/semantic-kernel-java
Notifications https://github.com/login?return_to=%2Fmicrosoft%2Fsemantic-kernel-java
Fork 55 https://github.com/login?return_to=%2Fmicrosoft%2Fsemantic-kernel-java
Star 270 https://github.com/login?return_to=%2Fmicrosoft%2Fsemantic-kernel-java
Code https://github.com/microsoft/semantic-kernel-java
Issues 48 https://github.com/microsoft/semantic-kernel-java/issues
Pull requests 5 https://github.com/microsoft/semantic-kernel-java/pulls
Actions https://github.com/microsoft/semantic-kernel-java/actions
Projects https://github.com/microsoft/semantic-kernel-java/projects
Models https://github.com/microsoft/semantic-kernel-java/models
Security and quality 0 https://github.com/microsoft/semantic-kernel-java/security
Insights https://github.com/microsoft/semantic-kernel-java/pulse
Code https://github.com/microsoft/semantic-kernel-java
Issues https://github.com/microsoft/semantic-kernel-java/issues
Pull requests https://github.com/microsoft/semantic-kernel-java/pulls
Actions https://github.com/microsoft/semantic-kernel-java/actions
Projects https://github.com/microsoft/semantic-kernel-java/projects
Models https://github.com/microsoft/semantic-kernel-java/models
Security and quality https://github.com/microsoft/semantic-kernel-java/security
Insights https://github.com/microsoft/semantic-kernel-java/pulse
Bug: Set ToolCallBehavior.allowAllKernelFunctions(false) doesn't work for getStreamingChatMessageContentsAsynchttps://github.com/microsoft/semantic-kernel-java/issues/279#top
bugSomething isn't workinghttps://github.com/microsoft/semantic-kernel-java/issues?q=state%3Aopen%20label%3A%22bug%22
triageNeeds triage from engineering teamhttps://github.com/microsoft/semantic-kernel-java/issues?q=state%3Aopen%20label%3A%22triage%22
https://github.com/thomaspeng90s
thomaspeng90shttps://github.com/thomaspeng90s
on Dec 9, 2024https://github.com/microsoft/semantic-kernel-java/issues/279#issue-2726308808
https://private-user-images.githubusercontent.com/25027712/393751821-acf9b0d0-182a-4b6f-84d4-dd32406f1074.png?jwt=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpc3MiOiJnaXRodWIuY29tIiwiYXVkIjoicmF3LmdpdGh1YnVzZXJjb250ZW50LmNvbSIsImtleSI6ImtleTUiLCJleHAiOjE3ODM0MzI3NTYsIm5iZiI6MTc4MzQzMjQ1NiwicGF0aCI6Ii8yNTAyNzcxMi8zOTM3NTE4MjEtYWNmOWIwZDAtMTgyYS00YjZmLTg0ZDQtZGQzMjQwNmYxMDc0LnBuZz9YLUFtei1BbGdvcml0aG09QVdTNC1ITUFDLVNIQTI1NiZYLUFtei1DcmVkZW50aWFsPUFLSUFWQ09EWUxTQTUzUFFLNFpBJTJGMjAyNjA3MDclMkZ1cy1lYXN0LTElMkZzMyUyRmF3czRfcmVxdWVzdCZYLUFtei1EYXRlPTIwMjYwNzA3VDEzNTQxNlomWC1BbXotRXhwaXJlcz0zMDAmWC1BbXotU2lnbmF0dXJlPWFmZWI0NzQ3YjBkMmM4NGE5ZWIxMjliM2FhMzJmMWE4MTFjMzY0MDA4YzI5ODY3ODI4ZWMxNDNhZmY3ZWNlOTcmWC1BbXotU2lnbmVkSGVhZGVycz1ob3N0JnJlc3BvbnNlLWNvbnRlbnQtdHlwZT1pbWFnZSUyRnBuZyJ9.74Rf_2Jiu5p7d8JlS1oGqhSsfLWTcelARay0bE2NmSk
https://private-user-images.githubusercontent.com/25027712/393752739-d4468935-8cc7-4356-9742-730cfb4b9c0c.png?jwt=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpc3MiOiJnaXRodWIuY29tIiwiYXVkIjoicmF3LmdpdGh1YnVzZXJjb250ZW50LmNvbSIsImtleSI6ImtleTUiLCJleHAiOjE3ODM0MzI3NTYsIm5iZiI6MTc4MzQzMjQ1NiwicGF0aCI6Ii8yNTAyNzcxMi8zOTM3NTI3MzktZDQ0Njg5MzUtOGNjNy00MzU2LTk3NDItNzMwY2ZiNGI5YzBjLnBuZz9YLUFtei1BbGdvcml0aG09QVdTNC1ITUFDLVNIQTI1NiZYLUFtei1DcmVkZW50aWFsPUFLSUFWQ09EWUxTQTUzUFFLNFpBJTJGMjAyNjA3MDclMkZ1cy1lYXN0LTElMkZzMyUyRmF3czRfcmVxdWVzdCZYLUFtei1EYXRlPTIwMjYwNzA3VDEzNTQxNlomWC1BbXotRXhwaXJlcz0zMDAmWC1BbXotU2lnbmF0dXJlPTBmYThmY2JkODk4M2E2ODM0ZjdiZWYxYzFlYjcyMDFiNDQ2Zjg2OTNlYjIwYmM2ZGMxOWM4NjBmNGY5MDBhMjAmWC1BbXotU2lnbmVkSGVhZGVycz1ob3N0JnJlc3BvbnNlLWNvbnRlbnQtdHlwZT1pbWFnZSUyRnBuZyJ9.bMrLj8Vtm_2HQUfJs5zv8sd3tvAfCERCREUY2pLFNE0
bugSomething isn't workinghttps://github.com/microsoft/semantic-kernel-java/issues?q=state%3Aopen%20label%3A%22bug%22
triageNeeds triage from engineering teamhttps://github.com/microsoft/semantic-kernel-java/issues?q=state%3Aopen%20label%3A%22triage%22
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.