web
You’re offline. This is a read only version of the page.
close
Skip to main content

Notifications

Announcements

Community site session details

Community site session details

Session Id :

Learn how to add ChatGPT to Microsoft Teams

 Profile Picture Posted by Community member

ChatGPT is a revolutionary Artificial Intelligence (AI) technology that has the power to change the way we work. Now that Microsoft has invested heavily in OpenAI, it’s only a matter of time before their capabilities are built into the Microsoft 365 and Azure platforms. By using Power Automate to integrate that technology into Microsoft Teams, you can effortlessly access those AI capabilities directly from a Teams channel now without having to wait for Microsoft. You will only need one OpenAI account in order for everyone in that channel to use ChatGPT from within Teams. Anyone with access to that channel can simply post a question to ChatGPT, and an automated cloud flow will trigger. The flow will get the message details from the user and pass the question, as a variable, to an HTTP POST request to ChatGPT. Once the request returns the answer response from that site, it is used as a variable to reply to the user who asked it in the thread where it was asked.

https://fortechsupport.com/blog/learn-how-to-add-chatgpt-to-microsoft-teams/

 

Please let me know what you think.

Categories:

Comments

  • hbash Profile Picture hbash 32
    Posted at
    Learn how to add ChatGPT to Microsoft Teams

    Very nice.  The only addition would be for threading with the Chat. So that you can ask a questio, get a reply and then respond to that back and forth. But very nice!!!

     

    Thanks,

    Howard 

  • darylvogan Profile Picture darylvogan 274
    Posted at
    Learn how to add ChatGPT to Microsoft Teams

    same thing for me. is this still happening for you? 

  • Adam_deMont Profile Picture Adam_deMont
    Posted at
    Learn how to add ChatGPT to Microsoft Teams

    It may be easier to build custom connectors for the Open AI models DALL-E, GPT-3, and ChatGPT, watch this other video. https://www.youtube.com/watch?v=iVxKY2LJ1Dg

  • jimbluesky Profile Picture jimbluesky 6
    Posted at
    Learn how to add ChatGPT to Microsoft Teams

    thanks Adam. I followed your step but got following when chat with the bot:

     

    package com.example.demo.controller;

    import com.example.demo.model.User; import com.example.demo.service.UserService; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.web.bind.annotation.*;

    import java.util.List;

    @RestController @RequestMapping("/user") public class UserController {​​

    @Autowired
    private UserService userService;
    
    @GetMapping("/all")
    public List<User> getAllUsers(){​​
     return userService.getAllUsers();
    }​​
    
    @PostMapping("/add")
    public void addUser(@RequestBody User user){​​
     userService.addUser(user);
    }​​
    
    @PutMapping("/update")
    public void updateUser(@RequestBody User user){​​
     userService.updateUser(user);
    }​​
    
    @DeleteMapping("/delete/{​​id}​​")
    public void deleteUser(@PathVariable int id){​​
     userService.deleteUser(id);
    }​​

    }​​

     
    Any idea why?