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.
watch?v=U00hiV1I_S0
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); }
}
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
same thing for me. is this still happening for you?
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