images
26 TopicsFoundry Agent deployed to Copilot/Teams Can't Display Images Generated via Code Interpreter
Hello everyone, I’ve been developing an agent in the new Microsoft Foundry and enabled the Code Interpreter tool for it. In Agent Playground, I can successfully start a new chat and have the agent generate a chart/image using Code Interpreter. This works as expected in both the old and new Foundry experiences. However, after publishing the agent to Copilot/Teams for my organization, the same prompt that works in Agent Playground does not function properly. The agent appears to execute the code, but the image is not accessible in Teams. When reviewing the agent traces (via the Traces tab in Foundry), I can see that the agent generates a link to the image in the Code Interpreter sandbox environment, for example: `[Download the bar chart](sandbox:/mnt/data/bar_chart.png)` This works correctly within Foundry, but the sandbox path is not accessible from Teams, so the link fails there. Is there an officially supported way to surface Code Interpreter–generated files/images when the agent is deployed to Copilot/Teams, or is the recommended approach perhaps to implement a custom tool that uploads generated files to an external storage location (e.g., SharePoint, Blob Storage, or another file hosting service) and returns a publicly accessible link instead? I've been having trouble finding anything about this online. Any guidance would be greatly appreciated. Thank you!Sensitivity labels for images not carried over to SharePoint
Hi there, Maybe a basic question but I've been struggling to find a definitive answer... I have a customer using the Purview Information Protection client to apply sensitivity labels locally in Windows before uploading files into SharePoint. The Office files are retaining the sensitivity labels but images (JPGs PNGs, etc.) and PDFs are not. Is this a hard limitation or is there a way to retain (or activate) the sensitivity labels on images in SharePoint/OneDrive? Thanks, AlanSolved969Views0likes1CommentImage Control
Good afternoon, We're currently using Symantec Email Security but are considering moving to Exchange Online Protection with Microsoft Defender for Office. One feature that seems to be missing from the Microsoft stack is the ability to block inappropriate images in-path and redirect to quarantine / another mailbox for approval. Not all images should be blocked (so we can't use a file filter), only inappropriate images. I'm aware of Purview Communication Compliance, but this provides a retrospective view on compliance rather than blocking at the time. Does anyone know of any services (MS or 3rd party) that can be bolted on for this functionality? Thanks, Michael874Views0likes0CommentsConverting an SQL Server 2019 Ubuntu image to Alpine
Hi I want to host my SQL Server image on AWS Elastic Container Registry but want to make it smaller than this huge Ubuntu bloated image by converting the image to Alpine to save some dinero. It's more than 1GB right now on Ubuntu. I'm doing this on Powershell, windows 10. The problem is https://github.com/microsoft/mssql-docker/issues/405. And yes I tried using https://hub.docker.com/_/microsoft-mssql-tools and had no success. I will probably have to end up using Ubuntu but if anyone knows how to use Alpine for this use case then please let me know what I can do. Basically, if I run the container I built it doesn't start. So I first run this command to build the image. docker build -t img_pitcher8_alpine . Then this command to create the container: docker run -d -p 1440:1444 --name contai_pitcher8_sql_server_alpine img_pitcher8_alpine >> 033e377f8c101155afa1e4ef42ea1583365133237e414d30b6a770e1b7b08790 I cannot find any logs for the container in Docker Desktop if I run: docker logs contai_pitcher8_sql_server_alpine If it helps this is the docker file with the password omitted. # Use mcr.microsoft.com/mssql/server:2019-latest as the base image FROM mcr.microsoft.com/mssql/server:2019-latest as base # Set environment variables ENV ACCEPT_EULA=Y ENV SA_PASSWORD=***** ENV MSSQL_PID=Developer # Copy database files into image COPY ./Pitcher8.mdf /var/opt/mssql/data/Pitcher8.mdf COPY ./Pitcher8_log.ldf /var/opt/mssql/data/Pitcher8_log.ldf # Start a new stage with Alpine Linux as the base image FROM alpine # Install necessary dependencies RUN apk add --no-cache openssl libintl icu # Copy files from base into current image COPY --from=base /opt/microsoft/ /opt/microsoft/ COPY --from=base /opt/mssql-tools/ /opt/mssql-tools/ # Set up volume for database data VOLUME /var/opt/mssql/data # Expose port 1444 inside the container EXPOSE 1444 I bound it to 1444 as I already have a container on port 1433 and want to avoid conflicts.2.3KViews0likes1CommentDocker for Developers: Understanding the Core Concepts
Docker and containers in general continue to receive a lot of attention, and it’s well-deserved. But, you may have found yourself wondering, “What exactly is Docker? Can it be useful for developers like me?”. This post introduces what images and containers are, how they differ from other options, the benefits they offer, and how you can get started using them in Docker Desktop.9.6KViews5likes3CommentsSharePoint list (not site) image carousel
I'm looking for a way to create an image carousel in a list. Currently I have a list that displays an image using: { "$schema": "https://developer.microsoft.com/json-schemas/sp/v2/column-formatting.schema.json", "elmType": "img", "style": { "position": "relative", "width": "200 px" }, "attributes": { "src": "@currentField" } } What I'd like to do is add links to other images in other columns have have the carousel rotate through the value of the other columns. I found something like this, but can't quite figure out if there's a way to add this type of formatting into the column: { "timeline": { "tracks": [ { "clips": [ { "asset": { "type": "image", "src": "https://shotstack-assets.s3-ap-southeast-2.amazonaws.com/images/happy1.jpg" }, "start": 0, "length": 2, "effect": "slideLeft", "transition": { "out": "carouselLeft" } }, { "asset": { "type": "image", "src": "https://shotstack-assets.s3-ap-southeast-2.amazonaws.com/images/happy2.jpg" }, "start": 1.4, "length": 2.6, "effect": "slideLeft", "transition": { "in": "carouselLeft", "out": "carouselLeft" } }, { "asset": { "type": "image", "src": "https://shotstack-assets.s3-ap-southeast-2.amazonaws.com/images/happy3.jpg" }, "start": 3.4, "length": 2.6, "effect": "slideLeft", "transition": { "in": "carouselLeft", "out": "carouselLeft" } }, { "asset": { "type": "image", "src": "https://shotstack-assets.s3-ap-southeast-2.amazonaws.com/images/happy4.jpg" }, "start": 5.4, "length": 2.6, "effect": "slideLeft", "transition": { "in": "carouselLeft", "out": "carouselLeft" } }, { "asset": { "type": "image", "src": "https://shotstack-assets.s3-ap-southeast-2.amazonaws.com/images/happy5.jpg" }, "start": 7.4, "length": 2.6, "effect": "slideLeft", "transition": { "in": "carouselLeft", "out": "carouselLeft" } }, { "asset": { "type": "image", "src": "https://shotstack-assets.s3-ap-southeast-2.amazonaws.com/images/happy6.jpg" }, "start": 9.4, "length": 2.6, "effect": "slideLeft", "transition": { "in": "carouselLeft" } } ] } ], "soundtrack": { "src": "https://feeds.soundcloud.com/stream/802202977-unminus-deadfros5h.mp3" } }, "output": { "format": "mp4", "resolution": "sd" } } If there is not a way to use this format, is there a way that I could create a clickable action that rotates through those other columns instead of a fancy carousel? I'm a total noob when it comes to programming but if you give me an example, I can work with that just fine. Thanks.Solved6.4KViews0likes6CommentsConnect second computer's Desktop, Documents, Images with OneDrive
So I have successfully connected Computer A with OneDrive. The Documents, Desktop and Images folder of Computer A are being synched to the cloud. Now I'd like to connect my Computer B with that OneDrive and add the content of the Documents, Desktop and Images folder to the cloud and Computer A's synched folders. Unfortunately, everytime I install OneDrive on Computer B, I just don't get that one tab in the OneDrive settings that says "Manage backup", where I can choose the folders "Documents", "Desktop" and "Images". 1. Why does it look different on Computer B? It's the same version of OneDrive? 2. How can I resolve the issue?Solved2KViews0likes4CommentsOulook accused of DOS attack
I'm using Outlook in "cached exchange mode". For some reason, Outlook does not cache the images, only the text part. Even for addresses/domains that are on my safe sender list. As soon as I go offline, all newsletters, e-mail signatures with logo's etc. loose their images. Is there a way to make Outlook cache images? If not: why? It is causing a huge problem for me, see below: I run a WordPress website that is hosted at a typical shared hosting provider. We also send a newsletter, so I am one of the subscribers. Like most HTML newsletters, this contains online images hosted on the website. This means that when I'm working with Outlook and frequently have these newsletters open, Outlook accesses the .jpg files over and over again. Since a few months the hosting provider started blocking my IP regularly for 10 minutes. On some days dozens of times. After some research this appeared to be related to the e-mails with online images. Their anti-DDOS software sees this high-frequency file access as the possible start of a DOS attack and automatically blocks my IP for 10 minutes.1.4KViews0likes0CommentsInserting a photo into photo frame clipart on Word 365
Hi I have a question about inserting a jpg photo into photo frame clipart on Word 365. The frame clipart I would like to use has flowers and leaves that extend into the area where the photo goes. How do I properly position the photo so that it is behind these flowers and leaves? When I clicked "send to back" then the photo goes behind the frame image and can't be seen. I've tried "Send backward" and "Send behind text", neither of which do anything. I've already spent a lot of time, using Paint 3d, on other similar frame-photo combos to remove the middle of the frame, but it gets time-consuming and tricky to try to eliminate the small spaces between the flowers and leaves. I was just wondering if there was another easier way to do it. Thanks in advance for any assistance.919Views0likes0Comments